Fix error in setting name of output device thread
parent
f2836d277a
commit
5404bb9ed2
|
@ -58,7 +58,7 @@ public class VotingBoothToyRun {
|
|||
Thread uiThread = new Thread(ui);
|
||||
uiThread.setName("Meerkat VB-UI Thread");
|
||||
Thread outputThread = new Thread(outputDevice);
|
||||
uiThread.setName("Meerkat VB-Output Thread");
|
||||
outputThread.setName("Meerkat VB-Output Thread");
|
||||
|
||||
uiThread.start();
|
||||
controllerThread.start();
|
||||
|
|
Loading…
Reference in New Issue