mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Compiler warnings.
This commit is contained in:
parent
42c36cd71b
commit
24434b880e
2 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue