We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2012238 commit 10a908dCopy full SHA for 10a908d
plugin-gradle/src/main/java/com/diffplug/gradle/spotless/SpotlessTask.java
@@ -119,9 +119,19 @@ public void setTarget(Iterable<File> target) {
119
120
/** Internal use only. */
121
@InputFiles
122
+ @Deprecated
123
+ public Iterable<File> getInternalTargetInput() {
124
+ return getInternalTarget();
125
+ }
126
+
127
+ /** Internal use only. */
128
@OutputFiles
129
@Deprecated
- public Iterable<File> getInternalTarget() {
130
+ public Iterable<File> getInternalTargetOutput() {
131
132
133
134
+ private Iterable<File> getInternalTarget() {
135
// used to combine the special cache file and the real target
136
return Iterables.concat(ImmutableList.of(getCacheFile()), target);
137
}
0 commit comments