We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbcbf4 commit 437bcffCopy full SHA for 437bcff
src/main/java/net/sourceforge/pmd/util/fxdesigner/app/DesignerParams.java
@@ -9,6 +9,7 @@
9
import java.util.List;
10
11
import com.sun.javafx.application.ParametersImpl;
12
+
13
import javafx.application.Application.Parameters;
14
15
@@ -42,7 +43,7 @@ public DesignerParams(String... args) {
42
43
public DesignerParams(Parameters params) {
44
List<String> raw = params.getRaw();
45
// error output is disabled by default
- if (raw.contains("-v") || raw.contains("--verbose")) {
46
+ if (raw.contains("-v") || raw.contains("--verbose") || raw.contains("--debug") || raw.contains("-D")) {
47
isDeveloperMode = true;
48
}
49
0 commit comments