diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-06-04 23:55:22 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-06-04 23:55:22 +0200 |
commit | 6e0f7eca3d17bfd13768a5c4d5a754b4b45c41b5 (patch) | |
tree | 4914c4b54e486db4984b1892ca36a37220066248 /website | |
parent | a0b901c3c04d0377f495a9da853196a3b0433eae (diff) | |
download | lombok-6e0f7eca3d17bfd13768a5c4d5a754b4b45c41b5.tar.gz lombok-6e0f7eca3d17bfd13768a5c4d5a754b4b45c41b5.tar.bz2 lombok-6e0f7eca3d17bfd13768a5c4d5a754b4b45c41b5.zip |
Fixing the snippet for the reworked FieldNameConstants
Diffstat (limited to 'website')
-rw-r--r-- | website/usageExamples/experimental/FieldNameConstantsExample_post.jpage | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/usageExamples/experimental/FieldNameConstantsExample_post.jpage b/website/usageExamples/experimental/FieldNameConstantsExample_post.jpage index 6300ed0e..67d89891 100644 --- a/website/usageExamples/experimental/FieldNameConstantsExample_post.jpage +++ b/website/usageExamples/experimental/FieldNameConstantsExample_post.jpage @@ -1,6 +1,6 @@ public class FieldNameConstantsExample { - public static final String I_AM_A_FIELD = "iAmAField"; - static final String AND_SO_AM_I = "andSoAmI"; + public static final String FIELD_I_AM_A_FIELD = "iAmAField"; + static final String FIELD_AND_SO_AM_I = "andSoAmI"; private final String iAmAField; private final int andSoAmI; |