Index: codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionScanner.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionScanner.java,v retrieving revision 1.46 diff -u -r1.46 CompletionScanner.java --- codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionScanner.java 15 Apr 2005 13:52:02 -0000 1.46 +++ codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionScanner.java 23 Jun 2005 10:05:45 -0000 @@ -118,11 +118,6 @@ /* might be completing at eof (e.g. behind a dot) */ if (this.completionIdentifier == null && this.startPosition == this.cursorLocation + 1){ - // compute end of empty identifier. - // if the empty identifier is at the start of a next token the end of - // empty identifier is the end of the next token (eg. "next"). - while(getNextCharAsJavaIdentifierPart()){/*empty*/} - this.endOfEmptyToken = this.currentPosition - 1; this.currentPosition = this.startPosition; // for being detected as empty free identifier return TokenNameIdentifier; }