We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4821c91 commit bf15a39Copy full SHA for bf15a39
1 file changed
ui/src/main/java/edu/wpi/grip/ui/DeployController.java
@@ -115,7 +115,7 @@ public void onDeploy() {
115
console.clear();
116
117
// Start the deploy in a new thread, so the GUI doesn't freeze
118
- deployThread = Optional.of(new Thread(this::deploy));
+ deployThread = Optional.of(new Thread(this::deploy, "Deploy"));
119
deployThread.get().setDaemon(true);
120
deployThread.get().start();
121
}
0 commit comments