diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
commit | 2d3b98e847b9dc1878b657de97fce2f54104776d (patch) | |
tree | a66995df3efe3d1f4c5075ec098a1b7114aabb4d /src/lombok/javac/handlers/HandleGetter.java | |
parent | b5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb (diff) | |
download | lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.gz lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.bz2 lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.zip |
Switched all use of <code></code> in javadoc to {@code}.
Diffstat (limited to 'src/lombok/javac/handlers/HandleGetter.java')
-rw-r--r-- | src/lombok/javac/handlers/HandleGetter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lombok/javac/handlers/HandleGetter.java b/src/lombok/javac/handlers/HandleGetter.java index fd39bda2..49f732d8 100644 --- a/src/lombok/javac/handlers/HandleGetter.java +++ b/src/lombok/javac/handlers/HandleGetter.java @@ -47,7 +47,7 @@ import com.sun.tools.javac.util.Name; import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition; /** - * Handles the <code>lombok.Getter</code> annotation for javac. + * Handles the {@code lombok.Getter} annotation for javac. */ @ProviderFor(JavacAnnotationHandler.class) public class HandleGetter implements JavacAnnotationHandler<Getter> { @@ -58,7 +58,7 @@ public class HandleGetter implements JavacAnnotationHandler<Getter> { * * The difference between this call and the handle method is as follows: * - * If there is a <code>lombok.Getter</code> annotation on the field, it is used and the + * If there is a {@code lombok.Getter} annotation on the field, it is used and the * same rules apply (e.g. warning if the method already exists, stated access level applies). * If not, the getter is still generated if it isn't already there, though there will not * be a warning if its already there. The default access level is used. |