File tree 2 files changed +10
-1
lines changed
cli/src/main/java/com/devonfw/tools/ide/tool/gcviewer
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This file documents all notable changes to https://github.com/devonfw/IDEasy[IDEasy].
4
4
5
+ == 2024.12.002
6
+
7
+ Release with new features and bugfixes:
8
+
9
+ * https://github.com/devonfw/IDEasy/issues/885[#885]: Gcviewer starts in foreground fixed
10
+
11
+ The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/17?closed=1[milestone 2024.12.002].
12
+
5
13
== 2024.12.001
6
14
7
15
NOTE: ATTENTION: When installing this release as an update, you need to manually remove IDEasy entries from `.bashrc` and if present also `.zshrc`.
Original file line number Diff line number Diff line change 5
5
import com .devonfw .tools .ide .common .Tag ;
6
6
import com .devonfw .tools .ide .context .IdeContext ;
7
7
import com .devonfw .tools .ide .process .ProcessContext ;
8
+ import com .devonfw .tools .ide .process .ProcessMode ;
8
9
import com .devonfw .tools .ide .tool .LocalToolCommandlet ;
9
10
import com .devonfw .tools .ide .tool .ToolCommandlet ;
10
11
import com .devonfw .tools .ide .tool .java .Java ;
@@ -40,6 +41,6 @@ public void run() {
40
41
pc .executable ("java" );
41
42
pc .addArg ("-jar" );
42
43
pc .addArg ("gcviewer-" + getInstalledVersion () + ".jar" );
43
- pc .run ();
44
+ pc .run (ProcessMode . BACKGROUND_SILENT );
44
45
}
45
46
}
You can’t perform that action at this time.
0 commit comments