Skip to content

Commit 83acd3a

Browse files
#856: Made gcviewer start in background (#896)
1 parent 11de3ca commit 83acd3a

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.adoc

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
This file documents all notable changes to https://github.com/devonfw/IDEasy[IDEasy].
44

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+
513
== 2024.12.001
614

715
NOTE: ATTENTION: When installing this release as an update, you need to manually remove IDEasy entries from `.bashrc` and if present also `.zshrc`.

cli/src/main/java/com/devonfw/tools/ide/tool/gcviewer/GcViewer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import com.devonfw.tools.ide.common.Tag;
66
import com.devonfw.tools.ide.context.IdeContext;
77
import com.devonfw.tools.ide.process.ProcessContext;
8+
import com.devonfw.tools.ide.process.ProcessMode;
89
import com.devonfw.tools.ide.tool.LocalToolCommandlet;
910
import com.devonfw.tools.ide.tool.ToolCommandlet;
1011
import com.devonfw.tools.ide.tool.java.Java;
@@ -40,6 +41,6 @@ public void run() {
4041
pc.executable("java");
4142
pc.addArg("-jar");
4243
pc.addArg("gcviewer-" + getInstalledVersion() + ".jar");
43-
pc.run();
44+
pc.run(ProcessMode.BACKGROUND_SILENT);
4445
}
4546
}

0 commit comments

Comments
 (0)