| author | John Liu | 2011-07-21 11:46:50 (EDT) |
|---|---|---|
| committer | Vivian Kong | 2011-07-21 11:52:50 (EDT) |
| commit | 62c3d22313b44edf792f16ee24aec47d7e447ed4 (patch) (side-by-side diff) | |
| tree | 3484d7712c24e415e5356f72dbebf7d89be08273 | |
| parent | 3d8652704eb4d479a1521e5245245606c2524f49 (diff) | |
| download | org.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.zip org.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.tar.gz org.eclipse.cdt-62c3d22313b44edf792f16ee24aec47d7e447ed4.tar.bz2 | |
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.java | 7 |
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 c54544e..5bb7155 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); } |

