Author: bodewig
Date: Sun Jan 29 19:13:56 2012
New Revision: 1237419
URL: http://svn.apache.org/viewvc?rev=1237419&view=rev
Log:
avoid classloader issues when not forking
Modified:
ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapterTest.java
Modified:
ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapterTest.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapterTest.java?rev=1237419&r1=1237418&r2=1237419&view=diff
==============================================================================
---
ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapterTest.java
(original)
+++
ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapterTest.java
Sun Jan 29 19:13:56 2012
@@ -45,6 +45,13 @@ public class DefaultCompilerAdapterTest
}
public boolean execute() { return false; }
+
+ /**
+ * public to avoid classloader issues.
+ */
+ public Commandline setupModernJavacCommandlineSwitches(Commandline
cmd) {
+ return super.setupModernJavacCommandlineSwitches(cmd);
+ }
}
public void testSourceIsIgnoredForJavac13() {