don't insert . after completing super in java

This commit is contained in:
peter
2010-07-30 22:04:47 +01:00
parent 801dba3cab
commit 24488c204b
2 changed files with 1 additions and 4 deletions
@@ -580,9 +580,6 @@ public class JavaCompletionData extends JavaAwareCompletionData{
}
});
}
else if (!AFTER_DOT.accepts(position)) {
superItem.setTailType(TailType.DOT);
}
result.addElement(superItem);
}
@@ -1,7 +1,7 @@
public class Xxx {
void foo() {
super.<caret>
super<caret>
}
}