aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConstructorsConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/ConstructorsConfiguration.java')
-rw-r--r--test/transform/resource/after-delombok/ConstructorsConfiguration.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ConstructorsConfiguration.java b/test/transform/resource/after-delombok/ConstructorsConfiguration.java
index 5bec3ae3..effc51b8 100644
--- a/test/transform/resource/after-delombok/ConstructorsConfiguration.java
+++ b/test/transform/resource/after-delombok/ConstructorsConfiguration.java
@@ -1,6 +1,7 @@
class ConstructorsConfiguration {
int x;
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public ConstructorsConfiguration(final int x) {
this.x = x;
}
@@ -9,6 +10,7 @@ class ConstructorsConfigurationExplicit {
int x;
@java.beans.ConstructorProperties({"x"})
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public ConstructorsConfigurationExplicit(final int x) {
this.x = x;
}