when importing a class via completion, don't indent the next line if it starts with a cast

This commit is contained in:
peter
2011-11-21 18:53:09 +01:00
parent f61f5b0039
commit 5a79031d3f
4 changed files with 25 additions and 11 deletions
@@ -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();
}
}