Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2012-08-29 00:39:42 +0000
committerVivian Kong2012-08-29 00:39:42 +0000
commit2e7dbc8b5515b2c80eae991d9f70e3b43cfaffea (patch)
tree3af1a095dda7311375ccf7d5fe2732015f5982c3 /build/org.eclipse.cdt.autotools.core/src
parent94bc2d793032fa62c459dadc86b16d71ce898bd6 (diff)
downloadorg.eclipse.cdt-2e7dbc8b5515b2c80eae991d9f70e3b43cfaffea.tar.gz
org.eclipse.cdt-2e7dbc8b5515b2c80eae991d9f70e3b43cfaffea.tar.xz
org.eclipse.cdt-2e7dbc8b5515b2c80eae991d9f70e3b43cfaffea.zip
Revert "Bug 387132 - AR: Incorrect mirrored strings and bracket occurred on "Properties for autotools" pages on Linux"
Diffstat (limited to 'build/org.eclipse.cdt.autotools.core/src')
-rw-r--r--build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/AutotoolsConfiguration.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/AutotoolsConfiguration.java b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/AutotoolsConfiguration.java
index 2d628ebaa4f..40dfb2f30f7 100644
--- a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/AutotoolsConfiguration.java
+++ b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/configure/AutotoolsConfiguration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2012 Red Hat Inc.
+ * Copyright (c) 2009, 2011 Red Hat Inc.
* 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
@@ -7,7 +7,6 @@
*
* Contributors:
* Red Hat Inc. - initial API and implementation
- * IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.internal.autotools.core.configure;
@@ -17,10 +16,9 @@ import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
-import org.eclipse.osgi.util.TextProcessor;
-
import org.eclipse.cdt.autotools.core.AutotoolsOptionConstants;
+
public class AutotoolsConfiguration implements IAConfiguration {
public static class Option {
@@ -59,11 +57,11 @@ public class AutotoolsConfiguration implements IAConfiguration {
}
public String getDescription() {
- return TextProcessor.process(ConfigureMessages.getConfigureDescription(transformedName));
+ return ConfigureMessages.getConfigureDescription(transformedName);
}
public String getToolTip() {
- return TextProcessor.process(ConfigureMessages.getConfigureTip(transformedName));
+ return ConfigureMessages.getConfigureTip(transformedName);
}
}

Back to the top