File tree 1 file changed +0
-10
lines changed
jcp/src/main/java/com/igormaznitsa/jcp/gradle
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -137,10 +137,6 @@ public class JcpPreprocessTask extends DefaultTask {
137
137
* will be replaced by white spaces chars.
138
138
*/
139
139
private final Property <Boolean > preserveIndents ;
140
- /**
141
- * Skip preprocessing. Also can be defined by property 'jcp.preprocess.skip'
142
- */
143
- private final Property <Boolean > skip ;
144
140
/**
145
141
* Turn on check of content body compare with existing result file to prevent
146
142
* overwriting, if content is the same then preprocessor will not be writing
@@ -162,7 +158,6 @@ public JcpPreprocessTask() {
162
158
this .keepComments = factory .property (Boolean .class ).convention (true );
163
159
this .keepLines = factory .property (Boolean .class ).convention (true );
164
160
this .preserveIndents = factory .property (Boolean .class ).convention (false );
165
- this .skip = factory .property (Boolean .class ).convention (false );
166
161
this .unknownVarAsFalse = factory .property (Boolean .class ).convention (false );
167
162
this .verbose = factory .property (Boolean .class ).convention (false );
168
163
@@ -306,11 +301,6 @@ public Property<Boolean> getPreserveIndents() {
306
301
return preserveIndents ;
307
302
}
308
303
309
- @ Input
310
- public Property <Boolean > getSkip () {
311
- return skip ;
312
- }
313
-
314
304
@ Input
315
305
public Property <Boolean > getDontOverwriteSameContent () {
316
306
return dontOverwriteSameContent ;
You can’t perform that action at this time.
0 commit comments