IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed

GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
This commit is contained in:
Anton Makeev
2019-05-17 19:02:16 +03:00
committed by intellij-monorepo-bot
parent 7eb07b6f15
commit b54aaf7e4e
4721 changed files with 23271 additions and 123684 deletions
@@ -1,8 +0,0 @@
public class StructuredConfigKey {
{
switch (x) {
case 2:
def<caret>
}
}
}
@@ -1,8 +0,0 @@
public class StructuredConfigKey {
{
switch (x) {
case 2:
default:<caret>
}
}
}
@@ -5,6 +5,5 @@ class Main {
}
private String getFileName(Path path) { return path.toString(); }
private String getFileName(Path path, boolean something) { return path.toString(); }
private void foo(String text, int count) {}
}
@@ -5,6 +5,5 @@ class Main {
}
private String getFileName(Path path) { return path.toString(); }
private String getFileName(Path path, boolean something) { return path.toString(); }
private void foo(String text, int count) {}
}
@@ -1,16 +0,0 @@
class Test {
{
MyBuilder b;
b.x().b().addInt(1).putLong(2).mayCallManyTimes().mayCallManyTimes().<caret>
}
}
interface MyBuilder {
MyBuilder x();
MyBuilder b();
MyBuilder c();
MyBuilder d();
MyBuilder addInt(int a);
MyBuilder putLong(long a);
MyBuilder mayCallManyTimes();
}
@@ -1,10 +0,0 @@
import java.util.stream.*;
class X {
{
Stream<String> stringStream = Stream.of("1", "2", "2");
stringStream.collect(Collectors.groupingBy(s -> s, Collectors.counting())<caret>);
}
}
@@ -1,10 +0,0 @@
import java.util.stream.*;
class X {
{
Stream<String> stringStream = Stream.of("1", "2", "2");
stringStream.collect(Collectors.groupingBy(s -> s, Collectors.count<caret>));
}
}