mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
when importing a class via completion, don't indent the next line if it starts with a cast
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
public static void fpp(Object o) {
|
||||
FileInpSt<caret>
|
||||
((Object) o).notify();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import java.io.FileInputStream;
|
||||
|
||||
public class Foo {
|
||||
public static void fpp(Object o) {
|
||||
FileInputStream<caret>
|
||||
((Object) o).notify();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user