Fix error in setting name of output device thread

vbdev2
Hai Brenner 2016-07-12 11:51:16 +03:00
parent f2836d277a
commit 5404bb9ed2
1 changed files with 1 additions and 1 deletions

View File

@ -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();