package NET.worlds.console; class VCTimerThread extends Thread { private long _wait; public VoiceChat _vc; VCTimerThread(VoiceChat vc, long wait) { this._vc = vc; this._wait = wait; } @Override public void run() { try { Thread.sleep(this._wait); } catch (InterruptedException var2) { this.stop(); } if (this._vc != null) { this._vc.checkConnected(); } } }