modified: src/main/java/de/dhbwstuttgart/core/JavaTXCompiler.java

INSTANCE auf sich selber geloescht
This commit is contained in:
pl@gohorb.ba-horb.de 2020-04-13 16:22:10 +02:00
parent 1b6af9ab7e
commit cc6156695d

View File

@ -48,7 +48,7 @@ import java.util.stream.Collectors;
public class JavaTXCompiler {
public static JavaTXCompiler INSTANCE;
//public static JavaTXCompiler INSTANCE;
final CompilationEnvironment environment;
Boolean resultmodel = true;
public final Map<File, SourceFile> sourceFiles = new HashMap<>();
@ -57,13 +57,13 @@ public class JavaTXCompiler {
public JavaTXCompiler(File sourceFile) throws IOException, ClassNotFoundException {
this(Arrays.asList(sourceFile));
INSTANCE = this;
//INSTANCE = this;
}
public JavaTXCompiler(File sourceFile, Boolean log) throws IOException, ClassNotFoundException {
this(sourceFile);
this.log = log;
INSTANCE = this;
//INSTANCE = this;
}
public JavaTXCompiler(List<File> sources) throws IOException, ClassNotFoundException {
@ -71,7 +71,7 @@ public class JavaTXCompiler {
for (File s : sources) {
sourceFiles.put(s, parse(s));
}
INSTANCE = this;
//INSTANCE = this;
}
public ConstraintSet<Pair> getConstraints() throws ClassNotFoundException {