aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/Data.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-10-16 10:16:03 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-10-16 10:16:03 +0200
commit2d3b98e847b9dc1878b657de97fce2f54104776d (patch)
treea66995df3efe3d1f4c5075ec098a1b7114aabb4d /src/lombok/Data.java
parentb5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb (diff)
downloadlombok-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/Data.java')
-rw-r--r--src/lombok/Data.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/Data.java b/src/lombok/Data.java
index fa424c24..488de640 100644
--- a/src/lombok/Data.java
+++ b/src/lombok/Data.java
@@ -37,10 +37,10 @@ import java.lang.annotation.Target;
* while the generated hashCode and equals take into account all non-transient fields.<br>
* Static fields are skipped (no getter or setter, and they are not included in toString, equals, hashCode, or the constructor).
* <p>
- * <code>toString</code>, <code>equals</code>, and <code>hashCode</code> use the deepX variants in the
- * <code>java.util.Arrays</code> utility class. Therefore, if your class has arrays that contain themselves,
- * these methods will just loop endlessly until the inevitable <code>StackOverflowError</code>. This behaviour
- * is no different from <code>java.util.ArrayList</code>, though.
+ * {@code toString}, {@code equals}, and {@code hashCode} use the deepX variants in the
+ * {@code java.util.Arrays} utility class. Therefore, if your class has arrays that contain themselves,
+ * these methods will just loop endlessly until the inevitable {@code StackOverflowError}. This behaviour
+ * is no different from {@code java.util.ArrayList}, though.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)