Cleaned the way boolean properties are transformed into as string
This commit is contained in:
parent
825415f526
commit
00ae368a85
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ public final class Property implements IProperty, Serializable, Cloneable {
|
|||
case STRING:
|
||||
return svalue;
|
||||
case BOOLEAN:
|
||||
return "" + bvalue;
|
||||
return bvalue ? "true" : "false";
|
||||
case DATE:
|
||||
SimpleDateFormat format = new SimpleDateFormat ("dd.MM.yy hh:mm");
|
||||
return format.format (new Date (lvalue));
|
||||
|
|
Loading…
Add table
Reference in a new issue