]> source.dussan.org Git - aspectj.git/commitdiff
removing unused parameter
authorwisberg <wisberg>
Wed, 6 Oct 2004 08:35:59 +0000 (08:35 +0000)
committerwisberg <wisberg>
Wed, 6 Oct 2004 08:35:59 +0000 (08:35 +0000)
util/src/org/aspectj/util/LangUtil.java

index 0893ca74734fb91f83b15764da0483cd32dfacfc..dacce54089c5d52326a0dda53d863662cd254fd0 100644 (file)
@@ -962,7 +962,7 @@ public class LangUtil {
         String classpath, 
         String mainClass, 
         String[] args) {
-        File java = LangUtil.getJavaExecutable(classpath);
+        File java = LangUtil.getJavaExecutable();
         ArrayList cmd = new ArrayList();
         cmd.add(java.getAbsolutePath());
         cmd.add("-classpath");
@@ -998,10 +998,9 @@ public class LangUtil {
     
     /**
      * Find java executable File path from java.home system property.
-     * @param classpath ignored for now
      * @return File associated with the java command, or null if not found.
      */
-    public static File getJavaExecutable(String classpath) { // XXX weak
+    public static File getJavaExecutable() { 
         String javaHome = null;
         File result = null;
         //java.home
@@ -1155,7 +1154,7 @@ public class LangUtil {
                 String classpath, 
                 String mainClass, 
                 String[] args) {
-            init(LangUtil.getJavaExecutable(classpath),
+            init(LangUtil.getJavaExecutable(),
                     classpath, mainClass, args);
         }