diff options
author | Roel Spilker <r.spilker@gmail.com> | 2012-07-02 21:52:51 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2012-07-02 21:52:51 +0200 |
commit | 5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152 (patch) | |
tree | 301a1194af2f3b875daf603af950a23f65fd09f4 /website | |
parent | 1b7d7598a191527d9a84bebfb6e42b4d654f9e79 (diff) | |
download | lombok-5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152.tar.gz lombok-5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152.tar.bz2 lombok-5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152.zip |
Fixed issue 374: updated documentation about case insensitive checking for existing methods.
Diffstat (limited to 'website')
-rw-r--r-- | website/features/GetterSetter.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/features/GetterSetter.html b/website/features/GetterSetter.html index b1ae5f24..0a576ea6 100644 --- a/website/features/GetterSetter.html +++ b/website/features/GetterSetter.html @@ -48,7 +48,7 @@ For generating the method names, the first character of the field, if it is a lowercase character, is title-cased, otherwise, it is left unmodified. Then, get/set/is is prefixed. </p><p> - No method is generated if any method already exists with the same name and same parameter count. For example, <code>getFoo()</code> + No method is generated if any method already exists with the same name (case insensitive) and same parameter count. For example, <code>getFoo()</code> will not be generated if there's already a method <code>getFoo(String... x)</code> even though it is technically possible to make the method. This caveat exists to prevent confusion. If the generation of a method is skipped for this reason, a warning is emitted instead. Varargs count as 0 to N parameters. </p><p> |