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:
parent
c4db17aa34
commit
03a47ffcf4
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ public class CDescriptor implements ICDescriptor {
|
||||||
}
|
}
|
||||||
IConfigurationElement element[] = extension.getConfigurationElements();
|
IConfigurationElement element[] = extension.getConfigurationElements();
|
||||||
for (int i = 0; i < element.length; i++) {
|
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 = (InternalCExtension)element[i].createExecutableExtension("run"); //$NON-NLS-1$
|
||||||
cExtension.setExtenionReference(ext);
|
cExtension.setExtenionReference(ext);
|
||||||
cExtension.setProject(fProject);
|
cExtension.setProject(fProject);
|
||||||
|
|
Loading…
Add table
Reference in a new issue