File tree 1 file changed +13
-1
lines changed
plugin-gradle/src/main/java/com/diffplug/gradle/spotless
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 34
34
import org .gradle .api .GradleException ;
35
35
import org .gradle .api .tasks .Input ;
36
36
import org .gradle .api .tasks .InputFiles ;
37
+ import org .gradle .api .tasks .OutputFiles ;
37
38
import org .gradle .api .tasks .TaskAction ;
38
39
import org .gradle .api .tasks .incremental .IncrementalTaskInputs ;
39
40
@@ -119,7 +120,18 @@ public void setTarget(Iterable<File> target) {
119
120
/** Internal use only. */
120
121
@ InputFiles
121
122
@ Deprecated
122
- public Iterable <File > getInternalTarget () {
123
+ public Iterable <File > getInternalTargetInput () {
124
+ return getInternalTarget ();
125
+ }
126
+
127
+ /** Internal use only. */
128
+ @ OutputFiles
129
+ @ Deprecated
130
+ public Iterable <File > getInternalTargetOutput () {
131
+ return getInternalTarget ();
132
+ }
133
+
134
+ private Iterable <File > getInternalTarget () {
123
135
// used to combine the special cache file and the real target
124
136
return Iterables .concat (ImmutableList .of (getCacheFile ()), target );
125
137
}
You can’t perform that action at this time.
0 commit comments