diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/language/settings/providers/LanguageSettingsStorage.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/language/settings/providers/LanguageSettingsStorage.java index d7832dc6d1f..0b9840b3d6d 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/language/settings/providers/LanguageSettingsStorage.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/language/settings/providers/LanguageSettingsStorage.java @@ -83,6 +83,7 @@ public class LanguageSettingsStorage { /** * This comparator sorts by kinds first and the macros are sorted additionally by name. */ + @Override public int compare(ICLanguageSettingEntry entry0, ICLanguageSettingEntry entry1) { int kind0 = entry0.getKind(); int kind1 = entry1.getKind(); @@ -318,13 +319,6 @@ public class LanguageSettingsStorage { } } - /** - * @noreference This method is not intended to be referenced by clients. - * Warning: but if you use it make sure you synchronize on it while traversing. - */ - Map>> getMapInternal() { - return fStorage; - } /** * Clone storage for the entries. Copies references for lists of entries as a whole. * Note that is OK as the lists kept in storage are unmodifiable.