diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-29 01:52:54 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-29 01:52:54 +0200 |
commit | 4243bc26103da971ee14fa2e99e3f88e88cf8b5c (patch) | |
tree | baeac48917e8158f9a7b3a5e837df9ff2d716076 /website/features | |
parent | 86acfadf552be04499c22de4531cc473e26372c5 (diff) | |
download | lombok-4243bc26103da971ee14fa2e99e3f88e88cf8b5c.tar.gz lombok-4243bc26103da971ee14fa2e99e3f88e88cf8b5c.tar.bz2 lombok-4243bc26103da971ee14fa2e99e3f88e88cf8b5c.zip |
Removed small print which was covering gimmies already covered in @ToString, @EqualsAndHashCode, and @Getter / @Setter documentation.
Diffstat (limited to 'website/features')
-rw-r--r-- | website/features/Data.html | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/website/features/Data.html b/website/features/Data.html index ee81405a..c39eb3f5 100644 --- a/website/features/Data.html +++ b/website/features/Data.html @@ -60,16 +60,8 @@ <div style="clear: left;"></div> <div class="overview"> <h3>Small print</h3><div class="smallprint"> - <p> - Arrays are 'deep' compared/printed/hashCoded, which means that arrays that contain themselves will result in <code>StackOverflowError</code>s. However, - this behaviour is no different from e.g. <code>ArrayList</code>. - </p><p> - For a general idea of how lombok generated the <code>equals</code>, <code>hashCode</code>, and <code>toString</code> methods, check the example after. - </p><p> - For the purposes of equality, 2 <code>NaN</code> (not a number) values for floats and doubles are considered equal, eventhough 'NaN == NaN' would - return false. This is analogous to <code>java.lang.Double</code>'s equals method, and is in fact required to ensure that comparing an object - to an exact copy of itself returns <code>true</code> for equality. - </p> + <p>See the small print of <a href="ToString.html"><code>@ToString</code></a>, <a href="EqualsAndHashCode.html"><code>@EqualsAndHashCode</code></a> and + <a href="GetterSetter.html"><code>@Getter / @Setter</code></a>. </div> </div> <div class="footer"> |