Skip to content
Snippets Groups Projects
Commit 333661e0 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

omit unused imports

parent e7473d18
No related branches found
No related tags found
No related merge requests found
...@@ -8,14 +8,9 @@ import edu.nps.moves.dis7.enumerations.VariableRecordType; ...@@ -8,14 +8,9 @@ import edu.nps.moves.dis7.enumerations.VariableRecordType;
import edu.nps.moves.dis7.pdus.CommentPdu; import edu.nps.moves.dis7.pdus.CommentPdu;
import edu.nps.moves.dis7.pdus.EntityID; import edu.nps.moves.dis7.pdus.EntityID;
import edu.nps.moves.dis7.pdus.Pdu; import edu.nps.moves.dis7.pdus.Pdu;
import edu.nps.moves.dis7.utilities.DisThreadedNetworkInterface;
import edu.nps.moves.dis7.utilities.DisTime;
import edu.nps.moves.dis7.utilities.PduFactory;
import edu.nps.moves.dis7.utilities.stream.PduRecorder;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.UnknownHostException; import java.net.UnknownHostException;
import java.util.ArrayList; import java.util.ArrayList;
// import jdk.internal.vm.annotation.IntrinsicCandidate;
/** /**
* DisChannel integrates multiple utility capabilities to handle most networking and entity-management tasks. * DisChannel integrates multiple utility capabilities to handle most networking and entity-management tasks.
...@@ -211,7 +206,7 @@ public class DisChannel ...@@ -211,7 +206,7 @@ public class DisChannel
* Send a single Protocol Data Unit (PDU) of any type * Send a single Protocol Data Unit (PDU) of any type
* @param pdu the pdu to send * @param pdu the pdu to send
*/ */
protected void sendSinglePdu(Pdu pdu) public void sendSinglePdu(Pdu pdu)
{ {
if (getDisNetworkInterface() == null) if (getDisNetworkInterface() == null)
setUpNetworkInterface(); // ensure connected setUpNetworkInterface(); // ensure connected
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment