mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fixed string in error
This commit is contained in:
parent
1c0c1dbe99
commit
d6bc6aa1f3
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ public class CDescriptor implements ICDescriptor {
|
||||||
IExtension extension = extensionPoint.getExtension(ext.getID());
|
IExtension extension = extensionPoint.getExtension(ext.getID());
|
||||||
if (extension == null) {
|
if (extension == null) {
|
||||||
throw new CoreException(new Status(IStatus.ERROR, CCorePlugin.PLUGIN_ID, -1,
|
throw new CoreException(new Status(IStatus.ERROR, CCorePlugin.PLUGIN_ID, -1,
|
||||||
CCorePlugin.getResourceString("CDescriptor.exception.providerNotFound" + ":" + ext.getID()), null)); //$NON-NLS-1$ //$NON-NLS-2$
|
CCorePlugin.getResourceString("CDescriptor.exception.providerNotFound") + ":" + ext.getID(), null)); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
}
|
}
|
||||||
IConfigurationElement element[] = extension.getConfigurationElements();
|
IConfigurationElement element[] = extension.getConfigurationElements();
|
||||||
for (int i = 0; i < element.length; i++) {
|
for (int i = 0; i < element.length; i++) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue