not so eager space after instanceof

This commit is contained in:
peter
2012-08-08 12:18:55 +02:00
parent 0d3bc73083
commit 1d7ecf3c72
5 changed files with 25 additions and 13 deletions
@@ -0,0 +1,7 @@
class Foo {
void test(Object o) {
if (o inst<caret> Foo) {
}
}
}
@@ -0,0 +1,7 @@
class Foo {
void test(Object o) {
if (o instanceof<caret> Foo) {
}
}
}