Removed sysos

This commit is contained in:
2015-06-18 20:16:45 +02:00
parent 5ce2cca4df
commit ec2d6cbc29
+2 -3
View File
@@ -3,7 +3,9 @@ package control;
import java.io.IOException; import java.io.IOException;
import java.net.DatagramPacket; import java.net.DatagramPacket;
import java.net.DatagramSocket; import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException; import java.net.SocketException;
import java.net.UnknownHostException;
import control.button.ButtonHandler; import control.button.ButtonHandler;
import control.joystick.Joystick.Position; import control.joystick.Joystick.Position;
@@ -78,7 +80,6 @@ public class NetworkHandler implements Runnable{
{ {
send = str.getBytes(); send = str.getBytes();
try { try {
System.out.println(send);
udpsend.send(new DatagramPacket(send, send.length, adr, port)); udpsend.send(new DatagramPacket(send, send.length, adr, port));
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
@@ -104,7 +105,6 @@ public class NetworkHandler implements Runnable{
e.printStackTrace(); e.printStackTrace();
} }
String sentence = new String( receivePacket.getData()); String sentence = new String( receivePacket.getData());
System.out.println("RECEIVED: " + sentence);
sentence = sentence.trim(); sentence = sentence.trim();
@@ -116,7 +116,6 @@ public class NetworkHandler implements Runnable{
for(int i = 0; i < 7; i++){ for(int i = 0; i < 7; i++){
if(control[i] != ButtonHandler.getButton(i).pressed) if(control[i] != ButtonHandler.getButton(i).pressed)
{ {
System.out.println("PRESS BITCH " + controls[i]);
ButtonHandler.getButton(i).pressed = control[i]; ButtonHandler.getButton(i).pressed = control[i];
if(control[i] == 0) if(control[i] == 0)
bth.buttonPress(ButtonHandler.getButton(i)); bth.buttonPress(ButtonHandler.getButton(i));