From fbf5b430b5817de355f40f910009f64ed4294714 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Sat, 6 Jun 2015 00:44:30 +0100 Subject: [PATCH] Remove log --- src/com/sheepit/client/standalone/GuiSwing.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/com/sheepit/client/standalone/GuiSwing.java b/src/com/sheepit/client/standalone/GuiSwing.java index a1f99bb..983e9e7 100644 --- a/src/com/sheepit/client/standalone/GuiSwing.java +++ b/src/com/sheepit/client/standalone/GuiSwing.java @@ -161,10 +161,7 @@ public class GuiSwing extends JFrame implements Gui { notifyAll(); } - if (threadClient != null && threadClient.isAlive()) { - System.out.println("Old thread client is alive, do not regenerate one"); - } - else { + if (threadClient == null || threadClient.isAlive() == false) { threadClient = new ThreadClient(); threadClient.start(); }