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/31 09:02:55 UTC

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

Author: taher
Date: Sun Jul 31 09:02:55 2016
New Revision: 1754641

URL: http://svn.apache.org/viewvc?rev=1754641&view=rev
Log:
minor formatting of multiline comment in build.gradle

change multiple lines from using // syntax to a unified /* */ syntax

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1754641&r1=1754640&r2=1754641&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Sun Jul 31 09:02:55 2016
@@ -632,9 +632,11 @@ task cleanAnt(group: cleanupGroup, type:
     delete 'ofbiz.jar'
 }
 
-//  Keep this task below all other clean tasks  The location of
-//  declaration is important because it means that it will automatically
-//  run whenever the task cleanAll executes (dependency matched by regex)
+/*
+ * Keep this task below all other clean tasks  The location of
+ * declaration is important because it means that it will automatically
+ * run whenever the task cleanAll executes (dependency matched by regex)
+ */
 def cleanTasks = getTasksMatchingRegex(/^clean.+/)
 task cleanAll(group: cleanupGroup, dependsOn: [cleanTasks, clean]) {
     description 'Execute all cleaning tasks.'