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 2016/07/11 11:38:00 UTC

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

Author: taher
Date: Mon Jul 11 11:37:59 2016
New Revision: 1752146

URL: http://svn.apache.org/viewvc?rev=1752146&view=rev
Log:
remove unused function from the build script - OFBIZ-7534

A properties reader function is no longer needed and hence
deleted from build.gradle.

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1752146&r1=1752145&r2=1752146&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Mon Jul 11 11:37:59 2016
@@ -808,12 +808,6 @@ def getTasksMatchingRegex(theRegex) {
     return filteredTasks
 }
 
-def retrievePropsFromFile(propsFile) {
-    def props = new Properties()
-    file(propsFile).withReader { props.load(it) }
-    return props
-}
-
 def generateFileFromTemplate(templateFileInFullPath, targetDirectory, filterTokens, newFileName) {
     copy {
         from (templateFileInFullPath) {