IDEA-23976 JavaCommandLineState — ansiColoring by default set to true

This commit is contained in:
Vladimir Krivosheev
2016-02-08 13:14:19 +01:00
parent 9d38f1ec33
commit 439ef44a5f
2 changed files with 3 additions and 8 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2015 JetBrains s.r.o.
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,11 +57,6 @@ public abstract class BaseJavaApplicationCommandLineState<T extends RunConfigura
return handler;
}
@Override
protected boolean ansiColoringEnabled() {
return true;
}
protected T getConfiguration() {
return myConfiguration;
}
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2015 JetBrains s.r.o.
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@ public abstract class JavaCommandLineState extends CommandLineState implements J
}
protected boolean ansiColoringEnabled() {
return false;
return true;
}
protected abstract JavaParameters createJavaParameters() throws ExecutionException;