]> source.dussan.org Git - aspectj.git/commitdiff
removing unused reliance on fork
authorwisberg <wisberg>
Wed, 6 Oct 2004 08:37:46 +0000 (08:37 +0000)
committerwisberg <wisberg>
Wed, 6 Oct 2004 08:37:46 +0000 (08:37 +0000)
testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java

index e50dd8174ad2ed276a1279028b84436fdabd78cb..ba25fb4da06604e53695b0a7439a88f78d1850fc 100644 (file)
@@ -389,12 +389,7 @@ public class CompilerRun implements IAjcRun {
             sandbox.setAspectpath(aspectFiles, checkReadable, this);
         }
 
-        // set bootclasspath if set for forking
-        AbstractRunSpec.Fork fork = spec.getFork();
-        String bootclasspath = fork.getJavaBootclasspath();
-        if (fork.fork() && (!LangUtil.isEmpty(bootclasspath))) {
-            sandbox.setBootclasspath(bootclasspath, this);
-        }
+        // XXX todo set bootclasspath if set for forking?
         return true;
     }
 
@@ -701,20 +696,6 @@ public class CompilerRun implements IAjcRun {
             return result;
         }
 
-        /** @return true if javac is available on the classpath */
-//        private static boolean haveJavac() { // XXX copy/paste from JavaCWrapper.java
-//            Class compilerClass = null;
-//            try {
-//                compilerClass = Class.forName("com.sun.tools.javac.Main");
-//            } catch (ClassNotFoundException ce1) {
-//                try {
-//                    compilerClass = Class.forName("sun.tools.javac.Main");
-//                } catch (ClassNotFoundException ce2) {
-//                }
-//            }
-//            return (null != compilerClass);
-//        }
-
         protected String compiler;
 
         // use same command - see also IncCompiler.Spec.fresh