1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

use static constant

This commit is contained in:
David Inglis 2004-08-11 17:41:47 +00:00
parent c4db17aa34
commit 03a47ffcf4

View file

@ -531,7 +531,7 @@ public class CDescriptor implements ICDescriptor {
}
IConfigurationElement element[] = extension.getConfigurationElements();
for (int i = 0; i < element.length; i++) {
if (element[i].getName().equalsIgnoreCase("cextension")) { //$NON-NLS-1$
if (element[i].getName().equalsIgnoreCase(CEXTENSION_NAME)) {
cExtension = (InternalCExtension)element[i].createExecutableExtension("run"); //$NON-NLS-1$
cExtension.setExtenionReference(ext);
cExtension.setProject(fProject);