Skip to content

Commit 08c8abc

Browse files
SougandhSakurtakov
authored andcommitted
Fix varargs type mismatch in NLS.bind invocation
Replaced String[] array with individual Object arguments in NLS.bind calls to resolve type mismatch warnings and add (Object[]) cast
1 parent 0a6f4dd commit 08c8abc

File tree

80 files changed

+448
-354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+448
-354
lines changed

ant/org.eclipse.ant.core/src/org/eclipse/ant/core/AntCorePreferences.java

Lines changed: 12 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corporation and others.
2+
* Copyright (c) 2000, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -607,9 +607,7 @@ private void addURLToExtraClasspathEntries(URL url, IConfigurationElement elemen
607607
if (eclipseRuntime != null) {
608608
eclipseRuntimeRequired = Boolean.parseBoolean(eclipseRuntime);
609609
}
610-
Iterator<AntClasspathEntry> itr = extraClasspathURLs.iterator();
611-
while (itr.hasNext()) {
612-
IAntClasspathEntry entry = itr.next();
610+
for (IAntClasspathEntry entry : extraClasspathURLs) {
613611
if (entry.getEntryURL().equals(url)) {
614612
return;
615613
}
@@ -689,8 +687,7 @@ private boolean configureAntObject(IConfigurationElement element, AntObject antO
689687

690688
String library = element.getAttribute(AntCorePlugin.LIBRARY);
691689
if (library == null) {
692-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_Library_not_specified_for___0__4, new String[] {
693-
objectName }), null);
690+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_Library_not_specified_for___0__4, objectName), null);
694691
AntCorePlugin.getPlugin().getLog().log(status);
695692
return false;
696693
}
@@ -708,8 +705,7 @@ private boolean configureAntObject(IConfigurationElement element, AntObject antO
708705
}
709706

710707
// type specifies a library that does not exist
711-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(errorMessage, new String[] {
712-
library, element.getContributor().getName() }), null);
708+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(errorMessage, library, element.getContributor().getName()), null);
713709
AntCorePlugin.getPlugin().getLog().log(status);
714710
return false;
715711
}
@@ -720,8 +716,7 @@ private boolean configureAntObject(IConfigurationElement element, AntObject antO
720716
}
721717
catch (Exception e) {
722718
// likely extra classpath entry library that does not exist
723-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_8, new String[] {
724-
library, element.getContributor().getName() }), null);
719+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_8, library, element.getContributor().getName()), null);
725720
AntCorePlugin.getPlugin().getLog().log(status);
726721
}
727722
return false;
@@ -744,8 +739,7 @@ protected void computeDefaultExtraClasspathEntries(List<IConfigurationElement> e
744739
addPluginClassLoader(bundle);
745740
} else {
746741
// extra classpath entry that does not exist
747-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_6, new String[] {
748-
library, element.getContributor().getName() }), null);
742+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_6, library, element.getContributor().getName()), null);
749743
AntCorePlugin.getPlugin().getLog().log(status);
750744
continue;
751745
}
@@ -758,8 +752,7 @@ protected void computeDefaultExtraClasspathEntries(List<IConfigurationElement> e
758752
}
759753
catch (Exception e) {
760754
// likely extra classpath entry that does not exist
761-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_6, new String[] {
762-
library, element.getContributor().getName() }), null);
755+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_LIBRARY_NOT_SPECIFIED, NLS.bind(InternalCoreAntMessages.AntCorePreferences_6, library, element.getContributor().getName()), null);
763756
AntCorePlugin.getPlugin().getLog().log(status);
764757
continue;
765758
}
@@ -1069,11 +1062,9 @@ private void addEntryURLs(List<URL> result, IAntClasspathEntry[] entries) {
10691062

10701063
protected ClassLoader[] getPluginClassLoaders() {
10711064
if (orderedPluginClassLoaders == null) {
1072-
Iterator<WrappedClassLoader> classLoaders = pluginClassLoaders.iterator();
10731065
Map<String, WrappedClassLoader> idToLoader = new HashMap<>(pluginClassLoaders.size());
10741066
List<BundleRevision> bundles = new ArrayList<>(pluginClassLoaders.size());
1075-
while (classLoaders.hasNext()) {
1076-
WrappedClassLoader loader = classLoaders.next();
1067+
for (WrappedClassLoader loader : pluginClassLoaders) {
10771068
idToLoader.put(loader.bundle.getSymbolicName(), loader);
10781069
BundleRevision revision = loader.bundle.adapt(BundleRevision.class);
10791070
if (revision != null) {
@@ -1134,8 +1125,7 @@ private List<BundleRevision> computePrerequisiteOrder(List<BundleRevision> plugi
11341125
prereqs.add(new Relation(currentFrag, hostWires.get(0).getProvider()));
11351126
}
11361127
} else {
1137-
AntCorePlugin.getPlugin().getLog().log(new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_MALFORMED_URL, NLS.bind(InternalCoreAntMessages.AntCorePreferences_1, new String[] {
1138-
currentFrag.getSymbolicName() }), null));
1128+
AntCorePlugin.getPlugin().getLog().log(new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_MALFORMED_URL, NLS.bind(InternalCoreAntMessages.AntCorePreferences_1, currentFrag.getSymbolicName()), null));
11391129
}
11401130
}
11411131

@@ -1289,9 +1279,7 @@ public List<Task> getTasks() {
12891279
public List<Task> getRemoteTasks() {
12901280
List<Task> result = new ArrayList<>(10);
12911281
if (defaultTasks != null && !defaultTasks.isEmpty()) {
1292-
Iterator<Task> iter = defaultTasks.iterator();
1293-
while (iter.hasNext()) {
1294-
Task task = iter.next();
1282+
for (Task task : defaultTasks) {
12951283
if (!task.isEclipseRuntimeRequired()) {
12961284
result.add(task);
12971285
}
@@ -1356,9 +1344,7 @@ public List<Property> getProperties() {
13561344
public List<Property> getRemoteAntProperties() {
13571345
List<Property> result = new ArrayList<>(10);
13581346
if (defaultProperties != null && !defaultProperties.isEmpty()) {
1359-
Iterator<Property> iter = defaultProperties.iterator();
1360-
while (iter.hasNext()) {
1361-
Property property = iter.next();
1347+
for (Property property : defaultProperties) {
13621348
if (!property.isEclipseRuntimeRequired()) {
13631349
result.add(property);
13641350
}
@@ -1527,9 +1513,7 @@ public List<Type> getTypes() {
15271513
public List<Type> getRemoteTypes() {
15281514
List<Type> result = new ArrayList<>(10);
15291515
if (defaultTypes != null && !defaultTypes.isEmpty()) {
1530-
Iterator<Type> iter = defaultTypes.iterator();
1531-
while (iter.hasNext()) {
1532-
Type type = iter.next();
1516+
for (Type type : defaultTypes) {
15331517
if (!type.isEclipseRuntimeRequired()) {
15341518
result.add(type);
15351519
}

ant/org.eclipse.ant.core/src/org/eclipse/ant/core/AntRunner.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,7 @@ private void basicConfigure(Class<?> classInternalAntRunner, Object runner) thro
303303
*/
304304
public void run(IProgressMonitor monitor) throws CoreException {
305305
if (buildRunning) {
306-
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_RUNNING_BUILD, NLS.bind(InternalCoreAntMessages.AntRunner_Already_in_progess, new String[] {
307-
buildFileLocation }), null);
306+
IStatus status = new Status(IStatus.ERROR, AntCorePlugin.PI_ANTCORE, AntCorePlugin.ERROR_RUNNING_BUILD, NLS.bind(InternalCoreAntMessages.AntRunner_Already_in_progess, buildFileLocation), null);
308307
throw new CoreException(status);
309308
}
310309
buildRunning = true;
@@ -450,7 +449,7 @@ protected void problemLoadingClass(Throwable e) throws CoreException {
450449
if (missingClassName != null) {
451450
missingClassName = missingClassName.replace('/', '.');
452451
message = InternalCoreAntMessages.AntRunner_Could_not_find_one_or_more_classes__Please_check_the_Ant_classpath__2;
453-
message = NLS.bind(message, new String[] { missingClassName });
452+
message = NLS.bind(message, missingClassName);
454453
} else {
455454
message = InternalCoreAntMessages.AntRunner_Could_not_find_one_or_more_classes__Please_check_the_Ant_classpath__1;
456455
}

debug/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ExternalToolsCoreUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected static void abort(String message, Throwable exception, int code) throw
7070
public static IPath getLocation(ILaunchConfiguration configuration) throws CoreException {
7171
String location = configuration.getAttribute(IExternalToolConstants.ATTR_LOCATION, (String) null);
7272
if (location == null) {
73-
abort(NLS.bind(ExternalToolsProgramMessages.ExternalToolsUtil_Location_not_specified_by__0__1, new String[] { configuration.getName()}), null, 0);
73+
abort(NLS.bind(ExternalToolsProgramMessages.ExternalToolsUtil_Location_not_specified_by__0__1, configuration.getName()), null, 0);
7474
} else {
7575
String expandedLocation = getStringVariableManager().performStringSubstitution(location);
7676
if (expandedLocation == null || expandedLocation.length() == 0) {

debug/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void launch(ILaunchConfiguration configuration, String mode,
117117
if (p != null) {
118118
monitor.beginTask(NLS.bind(
119119
ExternalToolsProgramMessages.ProgramLaunchDelegate_3,
120-
new String[] { configuration.getName() }),
120+
configuration.getName()),
121121
IProgressMonitor.UNKNOWN);
122122
String label = getProcessLabel(location, p);
123123
process = DebugPlugin.newProcess(launch, p, label, processAttributes);

debug/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/model/ExternalToolBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private void doBuildBasedOnScope(IResource[] resources, int kind, ILaunchConfigu
178178
}
179179

180180
private void launchBuild(int kind, ILaunchConfiguration config, Map<String, String> args, IProgressMonitor monitor) throws CoreException {
181-
monitor.subTask(NLS.bind(ExternalToolsModelMessages.ExternalToolBuilder_Running__0_____1, new String[] { config.getName()}));
181+
monitor.subTask(NLS.bind(ExternalToolsModelMessages.ExternalToolBuilder_Running__0_____1, config.getName()));
182182
buildStarted(kind, args);
183183
// The default value for "launch in background" is true in debug core. If
184184
// the user doesn't go through the UI, the new attribute won't be set. This means

debug/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/ContributedValueVariable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ private void initialize() {
8888
if (object instanceof IValueVariableInitializer initializer) {
8989
initializer.initialize(this);
9090
} else {
91-
VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0} - initializer must be an instance of IValueVariableInitializer.", new String[]{getName()}), null); //$NON-NLS-1$
91+
VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0} - initializer must be an instance of IValueVariableInitializer.", getName()), null); //$NON-NLS-1$
9292
}
9393
} catch (CoreException e) {
94-
VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0}",new String[]{getName()}), e); //$NON-NLS-1$
94+
VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0}", getName()), e); //$NON-NLS-1$
9595
}
9696
}
9797
} else {

debug/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/DynamicVariable.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public String getValue(String argument) throws CoreException {
3737
if (!supportsArgument()) {
3838
// check for an argument - not supported
3939
if (argument != null && argument.length() > 0) {
40-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.DynamicVariable_0, new String[]{argument, getName()}), null));
40+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.DynamicVariable_0, argument, getName()), null));
4141
}
4242
}
4343
if (fResolver == null) {
4444
String name = getConfigurationElement().getAttribute("resolver"); //$NON-NLS-1$
4545
if (name == null) {
46-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Contributed context variable {0} must specify a resolver.",new String[]{getName()}), null)); //$NON-NLS-1$
46+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Contributed context variable {0} must specify a resolver.", getName()), null)); //$NON-NLS-1$
4747
}
4848
Object object = getConfigurationElement().createExecutableExtension("resolver"); //$NON-NLS-1$
4949
if (object instanceof IDynamicVariableResolver) {
5050
fResolver = (IDynamicVariableResolver)object;
5151
} else {
52-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Contributed context variable resolver for {0} must be an instance of IContextVariableResolver.",new String[]{getName()}), null)); //$NON-NLS-1$
52+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Contributed context variable resolver for {0} must be an instance of IContextVariableResolver.", getName()), null)); //$NON-NLS-1$
5353
}
5454
}
5555
try {
5656
return fResolver.resolveValue(this, argument);
5757
} catch (RuntimeException e) {
58-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Error while evaluating variable {0}.",new String[]{getName()}), e)); //$NON-NLS-1$
58+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind("Error while evaluating variable {0}.", getName()), e)); //$NON-NLS-1$
5959
}
6060
}
6161

debug/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringSubstitutionEngine.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public String performStringSubstitution(String expression, boolean reportUndefin
105105
problemVariableList.append(", "); //$NON-NLS-1$
106106
}
107107
problemVariableList.setLength(problemVariableList.length()-2); //truncate the last ", "
108-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.REFERENCE_CYCLE_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_4, new String[]{problemVariableList.toString()}), null));
108+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.REFERENCE_CYCLE_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_4, problemVariableList.toString()), null));
109109
}
110110
}
111111

@@ -260,7 +260,7 @@ private String resolve(VariableReference var, boolean reportUndefinedVariables,
260260
if (dynamicVariable == null) {
261261
// no variables with the given name
262262
if (reportUndefinedVariables) {
263-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_3, new String[]{name}), null));
263+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_3, name), null));
264264
}
265265
// leave as is
266266
return getOriginalVarText(var);
@@ -283,7 +283,7 @@ private String resolve(VariableReference var, boolean reportUndefinedVariables,
283283
return getOriginalVarText(var);
284284
}
285285
// error - an argument specified for a value variable
286-
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_4, new String[]{valueVariable.getName()}), null));
286+
throw new CoreException(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringSubstitutionEngine_4, valueVariable.getName()), null));
287287
}
288288

289289
private String getOriginalVarText(VariableReference var) {

debug/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ private void loadDynamicVariables() {
223223
for (IConfigurationElement element : elements) {
224224
String name= element.getAttribute(ATTR_NAME);
225225
if (name == null) {
226-
VariablesPlugin.logMessage(NLS.bind("Variable extension missing required 'name' attribute: {0}", new String[] {element.getDeclaringExtension().getLabel()}), null); //$NON-NLS-1$
226+
VariablesPlugin.logMessage(NLS.bind("Variable extension missing required 'name' attribute: {0}", element.getDeclaringExtension().getLabel()), null); //$NON-NLS-1$
227227
continue;
228228
}
229229
String description= element.getAttribute(ATTR_DESCRIPTION);
@@ -246,7 +246,7 @@ private void loadContributedValueVariables() {
246246
for (IConfigurationElement element : elements) {
247247
String name= element.getAttribute(ATTR_NAME);
248248
if (name == null) {
249-
VariablesPlugin.logMessage(NLS.bind("Variable extension missing required 'name' attribute: {0}", new String[] {element.getDeclaringExtension().getLabel()}), null); //$NON-NLS-1$
249+
VariablesPlugin.logMessage(NLS.bind("Variable extension missing required 'name' attribute: {0}", element.getDeclaringExtension().getLabel()), null); //$NON-NLS-1$
250250
continue;
251251
}
252252
String description= element.getAttribute(ATTR_DESCRIPTION);
@@ -295,7 +295,7 @@ private void loadPersistedValueVariables() {
295295
if (node.getNodeType() == Node.ELEMENT_NODE) {
296296
Element element= (Element) node;
297297
if (!element.getNodeName().equals(VALUE_VARIABLE_TAG)) {
298-
VariablesPlugin.logMessage(NLS.bind("Invalid XML element encountered while loading value variables: {0}", new String[] {node.getNodeName()}), null); //$NON-NLS-1$
298+
VariablesPlugin.logMessage(NLS.bind("Invalid XML element encountered while loading value variables: {0}", node.getNodeName()), null); //$NON-NLS-1$
299299
continue;
300300
}
301301
String name= element.getAttribute(NAME_TAG);
@@ -360,7 +360,7 @@ public synchronized void addVariables(IValueVariable[] variables) throws CoreExc
360360
MultiStatus status = new MultiStatus(VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, VariablesMessages.StringVariableManager_26, null);
361361
for (IValueVariable variable : variables) {
362362
if (getValueVariable(variable.getName()) != null) {
363-
status.add(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringVariableManager_27, new String[]{variable.getName()}), null));
363+
status.add(new Status(IStatus.ERROR, VariablesPlugin.getUniqueIdentifier(), VariablesPlugin.INTERNAL_ERROR, NLS.bind(VariablesMessages.StringVariableManager_27, variable.getName()), null));
364364
}
365365
}
366366
if (status.isOK()) {

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationPresentationManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ void reportReplacement(LaunchConfigurationTabGroupExtension oldext, LaunchConfig
147147
Status status = new Status(IStatus.ERROR,
148148
DebugUIPlugin.getUniqueIdentifier(),
149149
NLS.bind(LaunchConfigurationsMessages.LaunchConfigurationPresentationManager_0,
150-
new String[]{oldext.getIdentifier(), oldext.getTypeIdentifier(), mode.toString(), newext.getIdentifier()}));
150+
oldext.getIdentifier(), oldext.getTypeIdentifier(), mode.toString(),
151+
newext.getIdentifier()));
151152
DebugUIPlugin.log(status);
152153
}
153154
}

0 commit comments

Comments
 (0)