removing unused imports

This commit is contained in:
cs-powell
2024-11-26 12:06:37 -05:00
parent c214cb182b
commit a91fb09632
8 changed files with 8 additions and 99 deletions

View File

@@ -154,7 +154,12 @@ public class Model {
xpc.sendCTRL(pitchDown);
}
}
break;
case THROTTLEUP:
break;
case THROTTLEDOWN:
break;
}
} catch (IOException e) {

View File

@@ -52,6 +52,7 @@ public class XPlaneConnectDiscovery implements AutoCloseable {
}
@SuppressWarnings("deprecation") // Added custom
public void start() throws IOException {
System.out.println("Starting XPlane Connect discovery");
socket = new MulticastSocket(mPort);
@@ -70,7 +71,6 @@ public class XPlaneConnectDiscovery implements AutoCloseable {
System.err.println("Received packet on discovery group but could not parse it: " + ex);
}
}
close();
System.out.println("XPlane Connect discovery ended");
}