diff --git a/assignments/src/MV3500Cohort2022MayJune/homework2/Ashmore/ExampleTrackInterpolationAshmore.java b/assignments/src/MV3500Cohort2022MayJune/homework2/Ashmore/ExampleTrackInterpolationAshmore.java index 0a2b26f9b14a6dc7f8987f935dc84241e280164f..f3d6e6258e933c6bd75cbb6b50edd7d0afef2b46 100644 --- a/assignments/src/MV3500Cohort2022MayJune/homework2/Ashmore/ExampleTrackInterpolationAshmore.java +++ b/assignments/src/MV3500Cohort2022MayJune/homework2/Ashmore/ExampleTrackInterpolationAshmore.java @@ -183,7 +183,7 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs } catch (InterruptedException iex) // handle any exception that your code might choose to provoke! { - Logger.getLogger(ExampleTrackInterpolationDuran.class.getName()).log(Level.SEVERE, null, iex); + Logger.getLogger(ExampleTrackInterpolationAshmore.class.getName()).log(Level.SEVERE, null, iex); } } @@ -194,7 +194,7 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs * @param directionEntity current direction * @return same object to permit progressive setters */ - public ExampleTrackInterpolationDuran reportPdu(int simulationLoopCount, Vector3Double location, EntityStatePdu.Direction directionEntity) + public ExampleTrackInterpolationAshmore reportPdu(int simulationLoopCount, Vector3Double location, EntityStatePdu.Direction directionEntity) { System.out.println (String.format("%2d ", simulationLoopCount) + "Entity location=(" + String.format("%4.1f", location.getX()) + ", " + @@ -218,11 +218,11 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs */ public static void main(String[] args) { - TRACE_PREFIX = "[" + ExampleTrackInterpolationDuran.class.getName() + "] "; + TRACE_PREFIX = "[" + ExampleTrackInterpolationAshmore.class.getName() + "] "; System.out.println(TRACE_PREFIX + "main() started..."); - thisProgram = new ExampleTrackInterpolationDuran(); // creates instance of self within static main() method + thisProgram = new ExampleTrackInterpolationAshmore(); // creates instance of self within static main() method thisProgram.handleArgs (args); // process command-line invocation arguments