ajack 2003/10/24 15:18:09
Modified: python/gump logic.py
Log:
Made an addInfo in a place that 'cos Gumpy (not being as OO as I'd like) is too
verbose. Turn it off for now.
Revision Changes Path
1.42 +5 -5 jakarta-gump/python/gump/logic.py
Index: logic.py
===================================================================
RCS file: /home/cvs/jakarta-gump/python/gump/logic.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- logic.py 24 Oct 2003 18:31:35 -0000 1.41
+++ logic.py 24 Oct 2003 22:18:08 -0000 1.42
@@ -555,7 +555,7 @@
# Don't loop...
if depend in visited:
- beneficiary.addInfo("Duplicated dependency [" + str(depend) + "]")
+ #beneficiary.addInfo("Duplicated dependency [" + str(depend) + "]")
if debug:
print str(depth) + ") Already Visited : " + str(depend)
print str(depth) + ") Previously Visits : "
@@ -692,15 +692,15 @@
for path in cp:
if not path in classpath:
classpath.append(path)
- else:
- beneficiary.addInfo("Duplicated classpath JAR [" + str(path) + "]")
+ #else:
+ #beneficiary.addInfo("Duplicated classpath JAR [" + str(path) + "]")
# Import the BOOTCLASSPATH stuff
for bpath in bcp:
if not bpath in bootclasspath:
bootclasspath.append(bpath)
- else:
- beneficiary.addInfo("Duplicated bootclasspath JAR [" + str(bpath) +
"]")
+ #else:
+ #beneficiary.addInfo("Duplicated bootclasspath JAR [" + str(bpath) +
"]")
def getJVMArgs(workspace,ant):
"""Get JVM arguments for a project"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]