Removing input device no longer a error

This commit is contained in:
Iwan Timmer
2014-03-28 16:28:20 +01:00
parent 24b201856f
commit 230a041621
+2 -1
View File
@@ -1,5 +1,6 @@
package com.limelight.input; package com.limelight.input;
import com.limelight.LimeLog;
import com.limelight.nvstream.NvConnection; import com.limelight.nvstream.NvConnection;
import com.limelight.nvstream.input.ControllerPacket; import com.limelight.nvstream.input.ControllerPacket;
import com.limelight.nvstream.input.KeyboardPacket; import com.limelight.nvstream.input.KeyboardPacket;
@@ -218,7 +219,7 @@ public class EvdevHandler implements Runnable {
inputBuffer.clear(); inputBuffer.clear();
} }
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); LimeLog.warning("Input device removed");
} }
} }