]> git.gag.com Git - debian/openrocket/blobdiff - src/net/sf/openrocket/gui/main/SimulationWorker.java
SafetyMutex and rocket optimization updates
[debian/openrocket] / src / net / sf / openrocket / gui / main / SimulationWorker.java
index 9e6f62bc1ca5b05765a9e1e78219211759593a43..f348fbcdbe0d22306aaac190416a878abe458b80 100644 (file)
@@ -54,8 +54,6 @@ public abstract class SimulationWorker extends SwingWorker<FlightData, Simulatio
                try {
                        simulation.simulate(listeners);
                } catch (Throwable e) {
-                       //                      System.out.println("Simulation interrupted:");
-                       //                      e.printStackTrace();
                        throwable = e;
                        return null;
                }
@@ -77,8 +75,6 @@ public abstract class SimulationWorker extends SwingWorker<FlightData, Simulatio
        /**
         * Called after a simulation is successfully simulated.  This method is not
         * called if the simulation ends in an exception.
-        * 
-        * @param sim   the simulation including the flight data
         */
        protected abstract void simulationDone();