diff options
author | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-09-12 12:02:04 -0500 |
---|---|---|
committer | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-09-12 12:02:04 -0500 |
commit | f222050d13364565692cd585ff5d9a055498c52e (patch) | |
tree | 24b6bbc9747952c619a621e42c3f48c4c83c029f /test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java | |
parent | 5b16b48bbffdd579b26e2a7dc18684efdc32e219 (diff) | |
download | lombok-f222050d13364565692cd585ff5d9a055498c52e.tar.gz lombok-f222050d13364565692cd585ff5d9a055498c52e.tar.bz2 lombok-f222050d13364565692cd585ff5d9a055498c52e.zip |
Fix class names in before
Diffstat (limited to 'test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java')
-rw-r--r-- | test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java b/test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java index 5047de45..77baccd3 100644 --- a/test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java +++ b/test/transform/resource/before/BuilderWithDeprecatedWithSetterPrefix.java @@ -3,7 +3,7 @@ import lombok.Builder; import lombok.Singular; @Builder(setterPrefix = "with") -public class BuilderWithDeprecated { +public class BuilderWithDeprecatedWithSetterPrefix { /** @deprecated since always */ String dep1; @Deprecated int dep2; @Singular @Deprecated java.util.List<String> strings; |