src/main/java/xelfi/compiler/XelfiCompilerMain.java
branchDirtyFix
changeset 10 fe294d0f1297
parent 5 2c326fbd80f2
child 15 cdb47e644581
     1.1 --- a/src/main/java/xelfi/compiler/XelfiCompilerMain.java	Tue Jan 17 21:08:28 2017 +0100
     1.2 +++ b/src/main/java/xelfi/compiler/XelfiCompilerMain.java	Tue Jan 17 21:12:37 2017 +0100
     1.3 @@ -5,19 +5,16 @@
     1.4  
     1.5  package xelfi.compiler;
     1.6  
     1.7 -import sun.tools.javac.*;
     1.8 -import sun.tools.java.*;
     1.9  import java.io.*;
    1.10  
    1.11  
    1.12 -class XelfiCompilerMain extends Main implements MainCompiler
    1.13 +class XelfiCompilerMain extends Object implements MainCompiler
    1.14  {
    1.15      /** Output from compiler is send here. */
    1.16    protected XelfiCompilerOutput out;
    1.17  
    1.18    XelfiCompilerMain(XelfiCompilerOutput o)
    1.19    {
    1.20 -    super(o, "javac");
    1.21      out = o;
    1.22    }
    1.23  
    1.24 @@ -37,7 +34,7 @@
    1.25        args[0] = file.toString();
    1.26        output("Compiling: " + args[0]);
    1.27      }
    1.28 -    compile(args);
    1.29 +//    compile(args);
    1.30      output("\n");
    1.31    }
    1.32