You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mr...@apache.org on 2011/02/07 22:06:18 UTC

svn commit: r1068134 - /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java

Author: mrisaliti
Date: Mon Feb  7 21:06:18 2011
New Revision: 1068134

URL: http://svn.apache.org/viewvc?rev=1068134&view=rev
Log:
Remove compilation warnings of an unused private method in EntityDataServices (OFBIZ-4102)

Modified:
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java?rev=1068134&r1=1068133&r2=1068134&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/data/EntityDataServices.java Mon Feb  7 21:06:18 2011
@@ -317,6 +317,7 @@ public class EntityDataServices {
         return newValue;
     }
 
+    @SuppressWarnings("unused")
     private String[] getEntityFieldNames(Delegator delegator, String entityName) {
         ModelEntity entity = delegator.getModelEntity(entityName);
         if (entity == null) {