diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-04-29 22:00:30 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-04-29 22:00:30 +0200 |
commit | 5fcb9284c13e58750ec6c36a1eae5869a5a52925 (patch) | |
tree | ba296b4d4d0e92ae724e6568dddd679357e7905a /src/core/lombok/EqualsAndHashCode.java | |
parent | f93478e7b56494ce86e9ea7d4585f288489073e0 (diff) | |
download | lombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.tar.gz lombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.tar.bz2 lombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.zip |
added docs for the new onParam feature on EqualsAndHashCode, and some tiny stylistic nitpicking.
Diffstat (limited to 'src/core/lombok/EqualsAndHashCode.java')
-rw-r--r-- | src/core/lombok/EqualsAndHashCode.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/lombok/EqualsAndHashCode.java b/src/core/lombok/EqualsAndHashCode.java index 0ce9ded7..dbce23b8 100644 --- a/src/core/lombok/EqualsAndHashCode.java +++ b/src/core/lombok/EqualsAndHashCode.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2013 The Project Lombok Authors. + * Copyright (C) 2009-2014 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -69,9 +69,9 @@ public @interface EqualsAndHashCode { AnyAnnotation[] onParam() default {}; /** - * Placeholder annotation to enable the placement of annotations on the generated code. - * @deprecated Don't use this annotation, ever - Read the documentation. - */ + * Placeholder annotation to enable the placement of annotations on the generated code. + * @deprecated Don't use this annotation, ever - Read the documentation. + */ @Deprecated @Retention(RetentionPolicy.SOURCE) @Target({}) |