[Yanel-commits] rev 43736 - public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/jelly

michi at wyona.com michi at wyona.com
Tue Jul 21 14:24:08 CEST 2009


Author: michi
Date: 2009-07-21 14:24:08 +0200 (Tue, 21 Jul 2009)
New Revision: 43736

Modified:
   public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/jelly/TextualInputItemSupport.java
Log:
get name fixed

Modified: public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/jelly/TextualInputItemSupport.java
===================================================================
--- public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/jelly/TextualInputItemSupport.java	2009-07-21 12:19:37 UTC (rev 43735)
+++ public/yanel/contributions/resources/creatable-modifiable-deletable-v3/src/java/org/wyona/yanel/impl/jelly/TextualInputItemSupport.java	2009-07-21 12:24:08 UTC (rev 43736)
@@ -33,7 +33,7 @@
             return;
         }
         
-        if (!(value instanceof String)) throw new IllegalArgumentException("Value of input item '" + name + "' is not a string: " + value.toString());
+        if (!(value instanceof String)) throw new IllegalArgumentException("Value of input item '" + getName() + "' is not a string: " + value.toString());
         
         if( "".equals(((String)value).trim())){
             value = null;



More information about the Yanel-commits mailing list