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

renames for clarity

parent 4c2c8b80
No related branches found
No related tags found
No related merge requests found
...@@ -190,7 +190,7 @@ public class AllPduRoundTripTest ...@@ -190,7 +190,7 @@ public class AllPduRoundTripTest
} }
}; };
disnetworking.addListener(lis); disnetworking.addListener(lis);
System.out.println("Recorder log at " + recorder.getLogFile()); System.out.println("Recorder log at " + recorder.getLogFilePath());
} }
/** Will shutdown the common send/receive network interface */ /** Will shutdown the common send/receive network interface */
...@@ -211,7 +211,7 @@ public class AllPduRoundTripTest ...@@ -211,7 +211,7 @@ public class AllPduRoundTripTest
private void getAllFromRecorder(Semaphore sem) throws Exception private void getAllFromRecorder(Semaphore sem) throws Exception
{ {
sem.acquire(); sem.acquire();
Path path = Path.of(recorder.getLogFile()).getParent(); Path path = Path.of(recorder.getLogFilePath()).getParent();
PduPlayer player = new PduPlayer(disnetworking.getMcastGroup(), disnetworking.getDisPort(), path, false); PduPlayer player = new PduPlayer(disnetworking.getMcastGroup(), disnetworking.getDisPort(), path, false);
player.addRawListener(ba -> { player.addRawListener(ba -> {
if (ba != null) { if (ba != null) {
......
...@@ -62,7 +62,7 @@ public class X3dInterpolatorsTest { ...@@ -62,7 +62,7 @@ public class X3dInterpolatorsTest {
Path path = Path.of("./pduLog"); Path path = Path.of("./pduLog");
// Note: the player will playback all log files in the given path // Note: the player will playback all log files in the given path
PduPlayer player = new PduPlayer(DisThreadedNetIF.DEFAULT_MCAST_GROUP, DisThreadedNetIF.DEFAULT_DIS_PORT, path, true); PduPlayer player = new PduPlayer(DisThreadedNetIF.DEFAULT_MULTICAST_ADDRESS, DisThreadedNetIF.DEFAULT_DIS_PORT, path, true);
player.addRawListener(ba -> { player.addRawListener(ba -> {
if (ba == null) { if (ba == null) {
player.end(); player.end();
......
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