Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Liu2011-07-21 15:46:50 +0000
committerVivian Kong2011-07-21 15:52:50 +0000
commit62c3d22313b44edf792f16ee24aec47d7e447ed4 (patch)
tree3484d7712c24e415e5356f72dbebf7d89be08273
parent3d8652704eb4d479a1521e5245245606c2524f49 (diff)
downloadorg.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.tar.gz
org.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.tar.xz
org.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.zip
Bug 352775 - The function registerFileEncoding in FileEncodingRegistry
should check default encoding first Change-Id: I33b736103707dfcb3848d1d1671487c7b1995e77
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/FileEncodingRegistry.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/FileEncodingRegistry.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/FileEncodingRegistry.java
index c54544e7f2e..5bb71551283 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/FileEncodingRegistry.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/FileEncodingRegistry.java
@@ -1,12 +1,12 @@
/*******************************************************************************
- * Copyright (c) 2010 IBM Corporation and others.
+ * Copyright (c) 2010, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * IBM Rational Software - Initial API and implementation
+ * IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.indexer;
@@ -41,6 +41,9 @@ public class FileEncodingRegistry implements Serializable {
}
public void registerFileEncoding(String filename, String encoding) {
+ if(defaultEncoding.equals(encoding)){
+ return;
+ }
if (fFilePathToEncodingMap != null) {
fFilePathToEncodingMap.put(filename, encoding);
}

Back to the top