You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ta...@apache.org on 2017/01/29 18:27:43 UTC

svn commit: r1780832 - /ofbiz/trunk/build.gradle

Author: taher
Date: Sun Jan 29 18:27:43 2017
New Revision: 1780832

URL: http://svn.apache.org/viewvc?rev=1780832&view=rev
Log:
Implemented: removed orphaned function no longer used due to previous commit
(OFBIZ-9182)

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1780832&r1=1780831&r2=1780832&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Sun Jan 29 18:27:43 2017
@@ -973,16 +973,6 @@ def getJarManifestClasspathForCurrentOs(
     return osClassPath
 }
 
-def componentExistsInRegister(componentRegister, componentName) {
-    def componentFound = false
-    componentRegister.children().each { component ->
-        if (componentName.equals(component.@"component-location")) {
-            componentFound = true
-        }
-    }
-    return componentFound
-}
-
 def subprojectExists(fullyQualifiedProject) {
     def projectFound = false
     subprojects.each { subproject ->