aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2017-03-07 01:10:18 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-03-07 01:12:28 +0100
commita2c10c70fa8e2c8736464a5c3d445e2ca6e8a296 (patch)
tree36bc00637e3c09d83863a8287a4809c407d89d1e /test/transform/resource/after-delombok
parentd05d03743316e45abfd0d00397999d7eb959eb64 (diff)
downloadlombok-a2c10c70fa8e2c8736464a5c3d445e2ca6e8a296.tar.gz
lombok-a2c10c70fa8e2c8736464a5c3d445e2ca6e8a296.tar.bz2
lombok-a2c10c70fa8e2c8736464a5c3d445e2ca6e8a296.zip
removed the suppressConstructorProperties param.
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r--test/transform/resource/after-delombok/ConstructorsConfiguration.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/transform/resource/after-delombok/ConstructorsConfiguration.java b/test/transform/resource/after-delombok/ConstructorsConfiguration.java
index effc51b8..40189911 100644
--- a/test/transform/resource/after-delombok/ConstructorsConfiguration.java
+++ b/test/transform/resource/after-delombok/ConstructorsConfiguration.java
@@ -6,12 +6,3 @@ class ConstructorsConfiguration {
this.x = x;
}
}
-class ConstructorsConfigurationExplicit {
- int x;
- @java.beans.ConstructorProperties({"x"})
- @java.lang.SuppressWarnings("all")
- @javax.annotation.Generated("lombok")
- public ConstructorsConfigurationExplicit(final int x) {
- this.x = x;
- }
-}