diff options
author | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:23:26 -0600 |
---|---|---|
committer | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:25:00 -0600 |
commit | f7f7656f81f9a84f92920492ab619accfaeb1ccf (patch) | |
tree | 5aac59fa5762fc333fb116f100b2f420ad974e83 /ajde.core/src | |
parent | a6b0448a0ec9ce353d0e95d90759037a5425f304 (diff) | |
download | aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.tar.gz aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.zip |
Fix incorrect HTML entities in javadoc comments
Diffstat (limited to 'ajde.core/src')
-rw-r--r-- | ajde.core/src/main/java/org/aspectj/ajde/core/IOutputLocationManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ajde.core/src/main/java/org/aspectj/ajde/core/IOutputLocationManager.java b/ajde.core/src/main/java/org/aspectj/ajde/core/IOutputLocationManager.java index 41b921bbf..270d47038 100644 --- a/ajde.core/src/main/java/org/aspectj/ajde/core/IOutputLocationManager.java +++ b/ajde.core/src/main/java/org/aspectj/ajde/core/IOutputLocationManager.java @@ -55,7 +55,7 @@ public interface IOutputLocationManager { List<File> getAllOutputLocations(); /** - * Return the default output location (for example, <my_project>/bin). This is where classes which are on the inpath will be + * Return the default output location (for example, <my_project>/bin). This is where classes which are on the inpath will be * placed. */ File getDefaultOutputLocation(); @@ -70,7 +70,7 @@ public interface IOutputLocationManager { void reportFileWrite(String outputfile, int fileType); /** - * @return a Map<File,String> from inpath absolute paths to handle components + * @return a Map<File,String> from inpath absolute paths to handle components */ Map<File, String> getInpathMap(); |