diff options
author | Roel Spilker <r.spilker@gmail.com> | 2017-09-18 23:19:25 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2017-09-18 23:19:25 +0200 |
commit | afb1fb88883d4b3707de3b97fb44253a725437b7 (patch) | |
tree | 2a2ce1a1cd10d5b18cb1fadbf21aaa0dcff7435f | |
parent | 4597e069dc926ed2f0e147fd0cdbc51e1edc7c23 (diff) | |
download | lombok-afb1fb88883d4b3707de3b97fb44253a725437b7.tar.gz lombok-afb1fb88883d4b3707de3b97fb44253a725437b7.tar.bz2 lombok-afb1fb88883d4b3707de3b97fb44253a725437b7.zip |
Rename class in test file
4 files changed, 10 insertions, 10 deletions
diff --git a/src/core/lombok/javac/handlers/JavacHandlerUtil.java b/src/core/lombok/javac/handlers/JavacHandlerUtil.java index b4dcb097..23206b43 100644 --- a/src/core/lombok/javac/handlers/JavacHandlerUtil.java +++ b/src/core/lombok/javac/handlers/JavacHandlerUtil.java @@ -1220,7 +1220,9 @@ public class JavacHandlerUtil { /** * Generates a new statement that checks if the given variable is null, and if so, throws a configured exception with the - * variable name as message. This is a special case method reserved for use when the provided declaration differs from the + * variable name as message. + * + * This is a special case method reserved for use when the provided declaration differs from the * variable's declaration, i.e. in a constructor or setter where the local parameter is named the same but with the prefix * stripped as a result of @Accessors.prefix. */ diff --git a/test/transform/resource/after-delombok/ConstructorsWithAccessors.java b/test/transform/resource/after-delombok/ConstructorsWithAccessors.java index 6e9398ba..94ccde08 100644 --- a/test/transform/resource/after-delombok/ConstructorsWithAccessors.java +++ b/test/transform/resource/after-delombok/ConstructorsWithAccessors.java @@ -15,7 +15,7 @@ class ConstructorsWithAccessors { } } -class NonNullConstructorsWithAccessors { +class ConstructorsWithAccessorsNonNull { @lombok.NonNull Integer plower; @lombok.NonNull @@ -28,7 +28,7 @@ class NonNullConstructorsWithAccessors { @java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") - public NonNullConstructorsWithAccessors(@lombok.NonNull final Integer plower, @lombok.NonNull final Integer upper, @lombok.NonNull final Integer huh, @lombok.NonNull final Integer _huh2) { + public ConstructorsWithAccessorsNonNull(@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"); } @@ -46,5 +46,4 @@ class NonNullConstructorsWithAccessors { this._huh = huh; this.__huh2 = _huh2; } -} - +}
\ No newline at end of file diff --git a/test/transform/resource/after-ecj/ConstructorsWithAccessors.java b/test/transform/resource/after-ecj/ConstructorsWithAccessors.java index b7a20e18..0876a5e4 100644 --- a/test/transform/resource/after-ecj/ConstructorsWithAccessors.java +++ b/test/transform/resource/after-ecj/ConstructorsWithAccessors.java @@ -11,12 +11,12 @@ this.__huh2 = _huh2; } } -@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix = {"p", "_"}) class NonNullConstructorsWithAccessors { +@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix = {"p", "_"}) class ConstructorsWithAccessorsNonNull { @lombok.NonNull Integer plower; @lombok.NonNull Integer pUpper; @lombok.NonNull Integer _huh; final @lombok.NonNull Integer __huh2; - public @java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") NonNullConstructorsWithAccessors(final @lombok.NonNull Integer plower, final @lombok.NonNull Integer upper, final @lombok.NonNull Integer huh, final @lombok.NonNull Integer _huh2) { + public @java.beans.ConstructorProperties({"plower", "upper", "huh", "_huh2"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") ConstructorsWithAccessorsNonNull(final @lombok.NonNull Integer plower, final @lombok.NonNull Integer upper, final @lombok.NonNull Integer huh, final @lombok.NonNull Integer _huh2) { super(); if ((plower == null)) { @@ -39,5 +39,4 @@ this._huh = huh; this.__huh2 = _huh2; } -} - +}
\ No newline at end of file diff --git a/test/transform/resource/before/ConstructorsWithAccessors.java b/test/transform/resource/before/ConstructorsWithAccessors.java index 12221ab7..e67a47ce 100644 --- a/test/transform/resource/before/ConstructorsWithAccessors.java +++ b/test/transform/resource/before/ConstructorsWithAccessors.java @@ -5,7 +5,7 @@ int __huh2; } -@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class NonNullConstructorsWithAccessors { +@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class ConstructorsWithAccessorsNonNull { @lombok.NonNull Integer plower; @lombok.NonNull Integer pUpper; @lombok.NonNull Integer _huh; |