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

fix imports with new build

parent a021d2fe
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ import java.io.*;
import java.net.*;
import java.util.*;
import edu.nps.moves.dis7.*;
import edu.nps.moves.dis7.pdus.*;
import edu.nps.moves.dis7.utilities.*;
import edu.nps.moves.dis7.enumerations.Country;
import edu.nps.moves.dis7.enumerations.EntityKind;
......
......@@ -4,7 +4,7 @@ import java.io.*;
import java.net.*;
import java.util.*;
import edu.nps.moves.dis7.*;
import edu.nps.moves.dis7.pdus.*;
import edu.nps.moves.dis7.utilities.*;
/**
......
......@@ -4,7 +4,7 @@
* and open the template in the editor.
*/
package MV3500Cohort2019JulySeptember.homework4.Schutt;
import edu.nps.moves.dis7.util.playerrecorder.Recorder;
import edu.nps.moves.dis7.utilities.stream.PduRecorder;
import java.io.IOException;
import java.util.Scanner;
......@@ -53,7 +53,7 @@ public class SchuttPDUSaverListener
System.out.println("Beginning pdu save to directory " + outDir);
try {
Recorder recorder = new Recorder(outDir, mcast, port);
PduRecorder recorder = new PduRecorder(outDir, mcast, port);
recorder.startResume();
mystate state = mystate.RUNNING;
......@@ -80,9 +80,9 @@ public class SchuttPDUSaverListener
break;
}
}
System.out.println("Ending pdu save to "+recorder.getLogFile());
System.out.println("Ending pdu save to "+recorder.getLogFilePath());
}
catch (IOException ex) {
catch (Exception ex) {
System.err.println("*** Exception: " + ex.getClass().getSimpleName() + ": " + ex.getLocalizedMessage());
}
}
......
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