1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-07 00:55:24 +02:00

Fixes warnings.

This commit is contained in:
Markus Schorn 2006-08-28 09:27:32 +00:00
parent a2457049ee
commit 2156961db1

View file

@ -1619,7 +1619,7 @@ public class NewClassCreationWizardPage extends NewElementWizardPage {
{
if (parent instanceof PDOMBinding)
{
buf.insert(0, ((PDOMBinding)parent).getName() + "::");
buf.insert(0, ((PDOMBinding)parent).getName() + "::"); //$NON-NLS-1$
}
parent = parent.getParentNode();
}
@ -1643,7 +1643,7 @@ public class NewClassCreationWizardPage extends NewElementWizardPage {
}
IQualifiedTypeName typeName = new QualifiedTypeName(className);
if (typeName.isQualified()) { //$NON-NLS-1$
if (typeName.isQualified()) {
status.setError(NewClassWizardMessages.getString("NewClassCreationWizardPage.error.QualifiedClassName")); //$NON-NLS-1$
return status;
}