You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2011/03/27 23:51:08 UTC

svn commit: r1086044 - /pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java

Author: smartini
Date: Sun Mar 27 21:51:08 2011
New Revision: 1086044

URL: http://svn.apache.org/viewvc?rev=1086044&view=rev
Log:
trim-whitespace

Modified:
    pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java

Modified: pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java
URL: http://svn.apache.org/viewvc/pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java?rev=1086044&r1=1086043&r2=1086044&view=diff
==============================================================================
--- pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java (original)
+++ pivot/trunk/demos/src/org/apache/pivot/demos/roweditor/AmountBindMapping.java Sun Mar 27 21:51:08 2011
@@ -34,7 +34,7 @@ public class AmountBindMapping implement
         // in case of an empty string to validate, return a default value, to avoid an NPE
         if (text.length() < 1)
             return new String("");
-        
+
         try {
             return FORMAT.parse(text);
         } catch (ParseException ex) {