File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
buildSrc/src/main/java/org/elasticsearch/gradle Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public boolean contains(Object o) {
4040
4141 @ Override
4242 public Iterator <T > iterator () {
43- return delegate .stream ().peek (this ::validate ).map (PropertyListEntry ::getValue ).collect ( Collectors . toList ()). iterator ();
43+ return delegate .stream ().peek (this ::validate ).map (PropertyListEntry ::getValue ).iterator ();
4444 }
4545
4646 @ Override
Original file line number Diff line number Diff line change 33import org .elasticsearch .gradle .testclusters .ElasticsearchCluster ;
44import org .gradle .api .tasks .CacheableTask ;
55import org .gradle .api .tasks .Nested ;
6- import org .gradle .api .tasks .Optional ;
76import org .gradle .api .tasks .testing .Test ;
87
98import java .util .ArrayList ;
@@ -28,7 +27,6 @@ public RestTestRunnerTask() {
2827 }
2928
3029 @ Nested
31- @ Optional
3230 public Collection <ElasticsearchCluster > getClusters () {
3331 return clusters ;
3432 }
You can’t perform that action at this time.
0 commit comments