diff --git a/src/helma/objectmodel/Property.java b/src/helma/objectmodel/Property.java index 4592e903..5dc82fe3 100644 --- a/src/helma/objectmodel/Property.java +++ b/src/helma/objectmodel/Property.java @@ -132,7 +132,7 @@ public final class Property implements IProperty, Serializable { case BOOLEAN: return "" + bvalue; case DATE: - SimpleDateFormat format = new SimpleDateFormat ("dd.MM.yy hh:mm"); + SimpleDateFormat format = new SimpleDateFormat ("dd.MM.yy HH:mm"); return format.format (new Date (lvalue)); case INTEGER: return Long.toString (lvalue); diff --git a/src/helma/objectmodel/db/Property.java b/src/helma/objectmodel/db/Property.java index d87b2180..01ff127e 100644 --- a/src/helma/objectmodel/db/Property.java +++ b/src/helma/objectmodel/db/Property.java @@ -287,7 +287,7 @@ public final class Property implements IProperty, Serializable, Cloneable { case BOOLEAN: return bvalue ? "true" : "false"; case DATE: - SimpleDateFormat format = new SimpleDateFormat ("dd.MM.yy hh:mm"); + SimpleDateFormat format = new SimpleDateFormat ("dd.MM.yy HH:mm"); return format.format (new Date (lvalue)); case INTEGER: return Long.toString (lvalue); @@ -354,68 +354,3 @@ public final class Property implements IProperty, Serializable, Cloneable { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -