Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 334922 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/wst/jsdt/core/compiler/CharOperation.java (-2 / +4 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2007 IBM Corporation and others.
2
 * Copyright (c) 2000, 2011 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 2272-2278 Link Here
2272
		&& (patternChar = pattern[iPattern]) != '*') {
2272
		&& (patternChar = pattern[iPattern]) != '*') {
2273
		if (iName == nameEnd)
2273
		if (iName == nameEnd)
2274
			return false;
2274
			return false;
2275
		if (patternChar
2275
		if ( (isCaseSensitive
2276
				? patternChar
2277
				: ScannerHelper.toLowerCase(patternChar))
2276
			!= (isCaseSensitive
2278
			!= (isCaseSensitive
2277
				? name[iName]
2279
				? name[iName]
2278
				: ScannerHelper.toLowerCase(name[iName]))
2280
				: ScannerHelper.toLowerCase(name[iName]))

Return to bug 334922