mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-23976 JavaCommandLineState — ansiColoring by default set to true
This commit is contained in:
+1
-6
@@ -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;
|
||||
}
|
||||
|
||||
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user