mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 19:49:44 +07:00
get rid of intellij.build.toolbox.litegen parameter and use BuildOptions.TOOLBOX_LITE_GEN_STEP to skip it instead
GitOrigin-RevId: 9aac8ee4ed1ebf2a29de18a238825fafb1ab88f9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
9215f4240b
commit
185284cee6
+1
-1
@@ -1,4 +1,4 @@
|
||||
import static java.io.FileInputStream<caret>
|
||||
import static java.io.FileInputStream.<caret>
|
||||
|
||||
class Main {
|
||||
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
interface Foo {
|
||||
void foo()
|
||||
/**
|
||||
foo bar
|
||||
*/
|
||||
<caret>void bar()
|
||||
}
|
||||
+1
@@ -5,5 +5,6 @@ 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,5 +5,6 @@ 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) {}
|
||||
}
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
class Test {
|
||||
{
|
||||
MyBuilder b;
|
||||
b.x().b().addInt(1).putLong(2).mayCallManyTimes().mayCallManyTimes().append("a").<caret>
|
||||
}
|
||||
}
|
||||
|
||||
interface MyBuilder {
|
||||
MyBuilder x();
|
||||
MyBuilder b();
|
||||
MyBuilder c();
|
||||
MyBuilder d();
|
||||
MyBuilder append(String s);
|
||||
MyBuilder addInt(int a);
|
||||
MyBuilder putLong(long a);
|
||||
MyBuilder mayCallManyTimes();
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("com.foooooo.<caret>");
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("com.foooooo.<caret>");
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.stream.*;
|
||||
|
||||
class X {
|
||||
|
||||
{
|
||||
Stream<String> stringStream = Stream.of("1", "2", "2");
|
||||
stringStream.collect(Collectors.groupingBy(s -> s, Collectors.counting())<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
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