don't throw exceptions when completing in the RHS of >>, complete instead

This commit is contained in:
peter
2010-08-26 20:25:10 +01:00
parent 6a19767ce5
commit 9f2c71850b
3 changed files with 14 additions and 3 deletions
@@ -0,0 +1,8 @@
public class SomeClass {
Object myField1;
Object myField2;
void foo(int param) {
int a = param >> my<caret>
}
}