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

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/util/BindingKeyParser.java (-1 / +2 lines)
Lines 145-151 Link Here
145
					case 'V':
145
					case 'V':
146
					case 'Z':
146
					case 'Z':
147
						// base type
147
						// base type
148
						if (this.index == previousTokenEnd) {
148
						if (this.index == previousTokenEnd 
149
								&& (this.index == 00 || this.source[this.index-1] != '.')) { // case of field or method starting with one of the character above
149
							this.index++;
150
							this.index++;
150
							this.token = TYPE;
151
							this.token = TYPE;
151
							return this.token;
152
							return this.token;

Return to bug 94398