From d61fcc17cec093a0a52657fae0a15aa56c0ca6da Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Fri, 23 Nov 2012 10:32:56 -0500 Subject: [PATCH] Corrected some ill-encoded characters in comments --- .../macros/IBuildMacroProvider.java | 22 +++++++++---------- .../IConfigurationBuildMacroSupplier.java | 4 ++-- .../macros/IProjectBuildMacroSupplier.java | 4 ++-- .../makegen/IManagedDependencyPreBuild.java | 8 +++---- .../dom/parser/cpp/semantics/Conversions.java | 2 +- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java index 48924c1e091..76b2eaa0da9 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java @@ -38,7 +38,7 @@ public interface IBuildMacroProvider{ * @param contextData represents the additional data needed by the Build Macro Provider * and Macro Suppliers in order to obtain the macro value. The type of the context data * differs depending on the context type and can be one of the following: - * 1. IFileContextData interface � used to represent currently selected file context + * 1. IFileContextData interface - used to represent currently selected file context * the IFileContextData interface is defined as follows: * public interface IFileContextData{ * IFile getFile(); @@ -46,13 +46,13 @@ public interface IBuildMacroProvider{ * } * NOTE: the IFileContextData is passed that represents the current file and the option * for that file because Macro Value Provider needs to know what option should be used - * as a context in case macro is not found for �current file� context + * as a context in case macro is not found for "current file" context * 2. IOptionContextData interface used to represent the currently selected option context - * 3. IConfiguration � used to represent the currently selected configuration context - * 4. IProject � used to represent current project context - * 5. IWorkspace � used to represent current workspace context - * 6. null � to represent the CDT and Eclipse installation context - * 7. null � to represent process environment context + * 3. IConfiguration - used to represent the currently selected configuration context + * 4. IProject - used to represent current project context + * 5. IWorkspace - used to represent current workspace context + * 6. null - to represent the CDT and Eclipse installation context + * 7. null - to represent process environment context * @param includeParentContexts specifies whether lower-precedence context macros should * be included */ @@ -107,7 +107,7 @@ public interface IBuildMacroProvider{ * 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 * @param contextType context from which the macro search should be started @@ -157,7 +157,7 @@ public interface IBuildMacroProvider{ * 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 * @param contextType context from which the macro search should be started @@ -200,7 +200,7 @@ public interface IBuildMacroProvider{ /** * * @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, int contextType, Object contextData) throws BuildMacroException; @@ -213,7 +213,7 @@ public interface IBuildMacroProvider{ * 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 checkIntegrity(int contextType, diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IConfigurationBuildMacroSupplier.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IConfigurationBuildMacroSupplier.java index 144923dde29..7f5e3360532 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IConfigurationBuildMacroSupplier.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IConfigurationBuildMacroSupplier.java @@ -26,7 +26,7 @@ public interface IConfigurationBuildMacroSupplier { * @param configuration configuration * @param provider the instance of the build macro provider to be used for querying the * build macros from within the supplier. The supplier should use this provider to obtain - * the already defined build macros instead of using the �default� provider returned by the + * the already defined build macros instead of using the "default" provider returned by the * ManagedBuildManager.getBuildMacroProvider(). * The provider passed to a supplier will ignore searching macros for the levels * higher than the current supplier level, will query only the lower-precedence suppliers @@ -46,7 +46,7 @@ public interface IConfigurationBuildMacroSupplier { * @param configuration configuration * @param provider the instance of the build macro provider to be used for querying the * build macros from within the supplier. The supplier should use this provider to obtain - * the already defined build macros instead of using the �default� provider returned by the + * the already defined build macros instead of using the "default" provider returned by the * ManagedBuildManager.getBuildMacroProvider(). * The provider passed to a supplier will ignore searching macros for the levels * higher than the current supplier level, will query only the lower-precedence suppliers diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IProjectBuildMacroSupplier.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IProjectBuildMacroSupplier.java index bdce1cf7489..4b4e6130399 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IProjectBuildMacroSupplier.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IProjectBuildMacroSupplier.java @@ -26,7 +26,7 @@ public interface IProjectBuildMacroSupplier { * @param project the instance of the managed project * @param provider the instance of the build macro provider to be used for querying the * build macros from within the supplier. The supplier should use this provider to obtain - * the already defined build macros instead of using the �default� provider returned by the + * the already defined build macros instead of using the "default" provider returned by the * ManagedBuildManager.getBuildMacroProvider(). * The provider passed to a supplier will ignore searching macros for the levels * higher than the current supplier level, will query only the lower-precedence suppliers @@ -46,7 +46,7 @@ public interface IProjectBuildMacroSupplier { * @param project the instance of the managed project * @param provider the instance of the build macro provider to be used for querying the * build macros from within the supplier. The supplier should use this provider to obtain - * the already defined build macros instead of using the �default� provider returned by the + * the already defined build macros instead of using the "default" provider returned by the * ManagedBuildManager.getBuildMacroProvider(). * The provider passed to a supplier will ignore searching macros for the levels * higher than the current supplier level, will query only the lower-precedence suppliers diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/makegen/IManagedDependencyPreBuild.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/makegen/IManagedDependencyPreBuild.java index d43a686646a..bcaa60419a5 100755 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/makegen/IManagedDependencyPreBuild.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/makegen/IManagedDependencyPreBuild.java @@ -73,20 +73,20 @@ import org.eclipse.core.runtime.IPath; * We can use this to ensure that the dependency files are up to date * by adding rules to the make file for generating the dependency files. * These rules are returned by the call to getDependencyCommands. - * However, this has a significant problem when we don�t want to build - * the build target, but only want to �clean� the configuration, + * However, this has a significant problem when we don't want to build + * the build target, but only want to "clean" the configuration, * for example. If we invoke make just to clean the configuration, * make will still update the dependency files if necessary, thereby * re-generating the dependency files only to immediately delete them. * The workaround suggested by the make documentation is to check for - * an invocation using the �clean� target, and to not include the + * an invocation using the "clean" target, and to not include the * dependency files it that case. For example, * * ifneq ($(MAKECMDGOALS),clean) * include $(DEPS) * endif * - * The restriction with this is that it only works if �clean� is the only + * The restriction with this is that it only works if "clean" is the only * target specified on the make command line. Therefore, the build * "clean" step must be invoked separately. */ diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java index 267b5c018dd..0707a73c5db 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java @@ -183,7 +183,7 @@ public class Conversions { return cost; } } - // � otherwise, the program is ill-formed. + // otherwise, the program is ill-formed. return Cost.NO_CONVERSION; }