mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed
GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7eb07b6f15
commit
b54aaf7e4e
@@ -1,8 +0,0 @@
|
||||
public class StructuredConfigKey {
|
||||
{
|
||||
switch (x) {
|
||||
case 2:
|
||||
def<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
public class StructuredConfigKey {
|
||||
{
|
||||
switch (x) {
|
||||
case 2:
|
||||
default:<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
-1
@@ -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
@@ -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) {}
|
||||
}
|
||||
|
||||
-16
@@ -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();
|
||||
}
|
||||
-10
@@ -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>);
|
||||
}
|
||||
|
||||
}
|
||||
-10
@@ -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>));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user