Skip to content
Snippets Groups Projects
Commit b1e1210a authored by brutzman's avatar brutzman
Browse files

fix imports with new build

parent 037f3f58
No related branches found
No related tags found
No related merge requests found
package MV3500Cohort2019JulySeptember.homework4.Brennenstuhl.test;
package MV3500Cohort2019JulySeptember.homework4.Brennenstuhl.Version2;
import java.net.*;
import java.io.*;
import edu.nps.moves.dis7.*;
import edu.nps.moves.dis7.pdus.*;
import edu.nps.moves.dis7.enumerations.*;
import edu.nps.moves.dis7.utilities.*;
import java.util.ArrayList;
......
package MV3500Cohort2019JulySeptember.homework4.Brennenstuhl.test;
package MV3500Cohort2019JulySeptember.homework4.Brennenstuhl.Version2;
import java.io.*;
import java.net.*;
import java.util.*;
import edu.nps.moves.dis7.*;
import edu.nps.moves.dis7.enumerations.*;
import edu.nps.moves.dis7.pdus.*;
/**
* This is an example that sends many/most types of PDUs. Useful for testing standards
......@@ -59,7 +58,7 @@ public class AllPduSender
//***************************************************************************
CommentPdu newCommentPdu = new CommentPdu();
ArrayList<VariableDatum> payloadList = new ArrayList<VariableDatum>();
ArrayList<VariableDatum> payloadList = new ArrayList<>();
ArrayList<String> commentsList = new ArrayList<>();
commentsList.add("Hello CommentPDU");
......
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