diff options
author | Kevin Chirls <kchirls@users.noreply.github.com> | 2017-03-15 10:09:04 -0700 |
---|---|---|
committer | Kevin Chirls <kchirls@users.noreply.github.com> | 2017-03-15 10:09:04 -0700 |
commit | 78e526690c22f1c5a1c93705076229ff32284741 (patch) | |
tree | 78c779216126421a818285755e907e44c70a0ef5 /test/transform/resource/after-delombok | |
parent | d146f362682654afd1a01c477836e72eadbd9e42 (diff) | |
download | lombok-78e526690c22f1c5a1c93705076229ff32284741.tar.gz lombok-78e526690c22f1c5a1c93705076229ff32284741.tar.bz2 lombok-78e526690c22f1c5a1c93705076229ff32284741.zip |
Updates for pull request #1284. Fix for issues #869 and #1018.
Added name to AUTHORS file. Added ECJ fix and test. Made one of the
variables final to also verify the final error case.
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/ConstructorsWithAccessors.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/transform/resource/after-delombok/ConstructorsWithAccessors.java b/test/transform/resource/after-delombok/ConstructorsWithAccessors.java index 25455943..6e9398ba 100644 --- a/test/transform/resource/after-delombok/ConstructorsWithAccessors.java +++ b/test/transform/resource/after-delombok/ConstructorsWithAccessors.java @@ -23,12 +23,11 @@ class NonNullConstructorsWithAccessors { @lombok.NonNull Integer _huh; @lombok.NonNull - Integer __huh2; + final Integer __huh2; @java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") - @lombok.Generated public NonNullConstructorsWithAccessors(@lombok.NonNull final Integer plower, @lombok.NonNull final Integer upper, @lombok.NonNull final Integer huh, @lombok.NonNull final Integer _huh2) { if (plower == null) { throw new java.lang.NullPointerException("plower"); |