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 2016/10/15 11:46:51 UTC

svn commit: r1765037 - in /ofbiz/trunk/specialpurpose/bi/groovyScripts: GetStarSchemaFields.groovy GetStarSchemas.groovy

Author: mridulpathak
Date: Sat Oct 15 11:46:51 2016
New Revision: 1765037

URL: http://svn.apache.org/viewvc?rev=1765037&view=rev
Log:
Improved: Removed unused imports from groovy files in BI component.
(OFBIZ-8474)

Thanks: Gopal Yadav for contribution.

Modified:
    ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemaFields.groovy
    ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemas.groovy

Modified: ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemaFields.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemaFields.groovy?rev=1765037&r1=1765036&r2=1765037&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemaFields.groovy (original)
+++ ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemaFields.groovy Sat Oct 15 11:46:51 2016
@@ -17,18 +17,6 @@
  * under the License.
  */
 
-import java.util.Collection;
-import java.util.Iterator;
-import java.util.TreeSet;
-
-import org.apache.ofbiz.base.util.UtilValidate;
-import org.apache.ofbiz.entity.Delegator;
-import org.apache.ofbiz.entity.model.ModelReader;
-import org.apache.ofbiz.entity.model.ModelEntity;
-import org.apache.ofbiz.entity.model.ModelField;
-import org.apache.ofbiz.entity.model.ModelViewEntity;
-import org.apache.ofbiz.entity.model.ModelViewEntity.ModelAlias;
-
 starSchemaName = parameters.starSchemaName;
 
 starSchemaFields = [];

Modified: ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemas.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemas.groovy?rev=1765037&r1=1765036&r2=1765037&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemas.groovy (original)
+++ ofbiz/trunk/specialpurpose/bi/groovyScripts/GetStarSchemas.groovy Sat Oct 15 11:46:51 2016
@@ -17,15 +17,6 @@
  * under the License.
  */
 
-import java.util.Collection;
-import java.util.Iterator;
-import java.util.TreeSet;
-
-import org.apache.ofbiz.entity.Delegator;
-import org.apache.ofbiz.entity.model.ModelReader;
-import org.apache.ofbiz.entity.model.ModelEntity;
-import org.apache.ofbiz.entity.model.ModelViewEntity;
-
 reader = delegator.getModelReader();
 ec = reader.getEntityNames();
 entities = new TreeSet(ec);