You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2010/02/23 16:45:17 UTC

svn commit: r915396 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java

Author: doogie
Date: Tue Feb 23 15:45:16 2010
New Revision: 915396

URL: http://svn.apache.org/viewvc?rev=915396&view=rev
Log:
Remove dead code; FMA has 100% coverage now.

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java?rev=915396&r1=915395&r2=915396&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/collections/FlexibleMapAccessor.java Tue Feb 23 15:45:16 2010
@@ -101,7 +101,7 @@
     }
 
     public boolean isEmpty() {
-         return this.original == null || this.original.length() == 0;
+         return this.original == null;
     }
 
     /** Given the name based information in this accessor, get the value from the passed in Map.