From 37c5e73b7fa82bb7d91935c27076d94dbcdda4a5 Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Wed, 13 Oct 2010 22:03:49 +0000 Subject: [PATCH] Fixed encoding problems in comments --- .../eclipse/cdt/core/cdtvariables/ICdtVariableManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/cdtvariables/ICdtVariableManager.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/cdtvariables/ICdtVariableManager.java index e6cb64a050b..9488d46284c 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/cdtvariables/ICdtVariableManager.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/cdtvariables/ICdtVariableManager.java @@ -68,7 +68,7 @@ public interface ICdtVariableManager{ * expanded to. If null the BuildMacroException is thrown in case the string to be resolved * references inexistent macros * @param listDelimiter if not null, StringList macros are expanded as - * �< listDelimiter >< listDelimiter > ... � + * "< listDelimiter >< listDelimiter > ... " * otherwise the BuildMacroException is thrown in case the string to be resolved references * string-list macros */ @@ -101,7 +101,7 @@ public interface ICdtVariableManager{ /** * * @return true if the specified expression can be treated as StringList - * 1. The string value is �${}� + * 1. The string value is "${}" */ public boolean isStringListValue(String value, ICConfigurationDescription cfg) throws CdtVariableException; @@ -114,7 +114,7 @@ public interface ICdtVariableManager{ * The BuildMacroException will contain the human-readable string describing * the inconsistency and the array of the IBuildMacro interfaces that will represent the macros that * caused the inconsistency. This information will be used in the UI to notify the user about - * the macro inconsistencies (see also the �User interface for viewing and editing Build Macros� + * the macro inconsistencies (see also the "User interface for viewing and editing Build Macros" * section of this design) */ public void checkVariableIntegrity(ICConfigurationDescription cfg) throws CdtVariableException;