1
0
Fork 0
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:
Andrew Gvozdev 2010-06-17 15:59:42 +00:00
parent 2c31af1afe
commit 0fd56bdb67
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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);
}