From d77816c2f061e232fc4af571190cf72d6e5f6c74 Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@nps.edu>
Date: Tue, 11 Jan 2022 23:07:03 -0800
Subject: [PATCH] normalize method names

---
 examples/src/OpenDis7Examples/SimulationManager.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/examples/src/OpenDis7Examples/SimulationManager.java b/examples/src/OpenDis7Examples/SimulationManager.java
index 401f2da5b1..d915f0ddac 100644
--- a/examples/src/OpenDis7Examples/SimulationManager.java
+++ b/examples/src/OpenDis7Examples/SimulationManager.java
@@ -79,42 +79,42 @@ public class SimulationManager
     /**
      * Start the simulation according to specifications
      */
-    public void SimulationStart()
+    public void simulationStart()
     {
         // TODO
     }
     /**
      * Pause the simulation according to specifications
      */
-    public void SimulationPause()
+    public void simulationPause()
     {
         // TODO
     }
     /**
      * Resume the simulation according to specifications
      */
-    public void SimulationResume()
+    public void simulationResume()
     {
         // TODO
     }
     /**
      * Stop the simulation according to specifications
      */
-    public void SimulationStop()
+    public void simulationStop()
     {
         // TODO
     }
     /**
      * An entity can Join the simulation according to specifications
      */
-    public void Join()
+    public void simulationJoin()
     {
         // TODO
     }
     /**
      * An entity can Leave the simulation according to specifications
      */
-    public void Leave()
+    public void simulationLeave()
     {
         // TODO
     }
-- 
GitLab