Revision: 248
http://svn.sourceforge.net/openutils/?rev=248&view=rev
Author: fgiust
Date: 2007-02-13 02:23:46 -0800 (Tue, 13 Feb 2007)
Log Message:
-----------
minor fix in debug log
Modified Paths:
--------------
trunk/openutils-spring/src/main/java/it/openutils/spring/editors/GenericSinglePropertyEditor.java
Modified: trunk/openutils-spring/src/main/java/it/openutils/spring/editors/GenericSinglePropertyEditor.java
===================================================================
--- trunk/openutils-spring/src/main/java/it/openutils/spring/editors/GenericSinglePropertyEditor.java 2007-02-13 10:00:30 UTC (rev 247)
+++ trunk/openutils-spring/src/main/java/it/openutils/spring/editors/GenericSinglePropertyEditor.java 2007-02-13 10:23:46 UTC (rev 248)
@@ -57,7 +57,7 @@
{
Object value = getValue();
- log.debug("getAsText({}", value);
+ log.debug("getAsText({})", value);
String returnString = null;
@@ -104,7 +104,7 @@
parameters[0] = new Long(text);
}
- Object value = MethodUtils.invokeMethod(dao, "load", parameters, new Class[]{this.propertyType});
+ Object value = MethodUtils.invokeMethod(dao, "load", parameters, new Class[]{this.propertyType });
setValue(value);
}
catch (Exception e)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|