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

Compiler warnings.

This commit is contained in:
Sergey Prigogin 2012-01-07 18:09:31 -08:00
parent 42c36cd71b
commit 24434b880e
2 changed files with 2 additions and 2 deletions

View file

@ -131,7 +131,7 @@ public class UISelectWidget extends InputUIElement {
}
private PatternEvent createPatternEvent() {
String msg= MessageFormat.format(Messages.getString("UISelectWidget_ErrorNoneSelected0"), new String[] {label.getText()}); //$NON-NLS-1$
String msg= MessageFormat.format(Messages.getString("UISelectWidget_ErrorNoneSelected0"), label.getText()); //$NON-NLS-1$
return new PatternEvent(this, msg, isValid());
}

View file

@ -141,7 +141,7 @@ public class UIStringListWidget extends InputUIElement {
}
protected PatternEvent createPatternEvent() {
String msg= MessageFormat.format("Please add an item to {0}", new String[] {label.getText()}); //$NON-NLS-1$
String msg= MessageFormat.format("Please add an item to {0}", label.getText()); //$NON-NLS-1$
return new PatternEvent(this, msg, isValid());
}