View | Details | Raw Unified | Return to bug 205860 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/util/BindingKeyParser.java (-1 / +2 lines)
Lines 163-169 Link Here
163
						break;
163
						break;
164
					case 'L':
164
					case 'L':
165
					case 'T':
165
					case 'T':
166
						if (this.index == previousTokenEnd) {
166
						if (this.index == previousTokenEnd 
167
								&& (this.index == 0 || this.source[this.index-1] != '.')) { // case of field or method starting with one of the character above
167
							this.start = this.index+1;
168
							this.start = this.index+1;
168
						}
169
						}
169
						break;
170
						break;

Return to bug 205860