You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/12/11 17:21:52 UTC

svn commit: r485737 - /harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java

Author: geirm
Date: Mon Dec 11 08:21:50 2006
New Revision: 485737

URL: http://svn.apache.org/viewvc?view=rev&rev=485737
Log:
this needs to be switched to something else other than a simple 
file check


Modified:
    harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java

Modified: harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java?view=diff&rev=485737&r1=485736&r2=485737
==============================================================================
--- harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java (original)
+++ harmony/enhanced/jdktools/trunk/modules/tools/src/main/java/org/apache/harmony/tools/javac/Compiler.java Mon Dec 11 08:21:50 2006
@@ -88,10 +88,10 @@
      * Initialize our local variables. Called during type construction.
      */
     protected void initialize() {
-        if (!new File(ECJ_JAR_FILE).exists()) {
-            System.err.println("javac requires the compiler jar \""
-                    + ECJ_JAR_FILE + "\" to run");
-        }
+//        if (!new File(ECJ_JAR_FILE).exists()) {
+//            System.err.println("javac requires the compiler jar \""
+//                    + ECJ_JAR_FILE + "\" to run");
+//        }
         try {
             initializeMainClass();
             initializeInstance();