mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 09:55:29 +02:00
Improved message in .log
This commit is contained in:
parent
2c31af1afe
commit
0fd56bdb67
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
# Intel Corporation - Initial API and implementation
|
||||
###############################################################################
|
||||
BuildProperty.0=the specified type does not exist
|
||||
BuildProperty.1=invalid value id
|
||||
BuildProperty.1=Unsupported property id=
|
||||
BuildPropertyManager.8=property type of the specified id already exists and has different name
|
||||
BuildPropertyManager.9=specified property type does not exist
|
||||
BuildPropertyManager.10=property value of the specified id already exists and has different name
|
||||
|
|
|
@ -57,7 +57,7 @@ public class BuildProperty implements IBuildProperty{
|
|||
if(value == null)
|
||||
throw new CoreException(new Status(IStatus.ERROR,
|
||||
ManagedBuilderCorePlugin.getUniqueIdentifier(),
|
||||
BuildPropertiesMessages.getString("BuildProperty.1"))); //$NON-NLS-1$
|
||||
BuildPropertiesMessages.getString("BuildProperty.1")+id)); //$NON-NLS-1$
|
||||
|
||||
setValue(value);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue