You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/groovy/transform/MapConstructor.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -114,12 +114,12 @@
114
114
/**
115
115
* A Closure containing statements which will be prepended to the generated constructor. The first statement within the Closure may be "super(someArgs)" in which case the no-arg super constructor won't be called.
116
116
*/
117
-
Classpre();
117
+
Classpre()defaultUndefined.CLASS.class;
118
118
119
119
/**
120
120
* A Closure containing statements which will be appended to the end of the generated constructor. Useful for validation steps or tweaking the populated fields/properties.
121
121
*/
122
-
Classpost();
122
+
Classpost()defaultUndefined.CLASS.class;
123
123
124
124
/**
125
125
* Whether to include all fields and/or properties within the constructor, including those with names that are considered internal.
Copy file name to clipboardExpand all lines: src/main/groovy/transform/TupleConstructor.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -267,12 +267,12 @@
267
267
*
268
268
* @since 2.5.0
269
269
*/
270
-
Classpre();
270
+
Classpre()defaultUndefined.CLASS.class;
271
271
272
272
/**
273
273
* A Closure containing statements which will be appended to the end of the generated constructor. Useful for validation steps or tweaking the populated fields/properties.
0 commit comments