updates for 0.9.4
[debian/openrocket] / src / net / sf / openrocket / motor / ThrustCurveMotor.java
index e495defeb2ff50a833c8cd508307cb5e6f220a04..1ccfec20cfaae8d12afbeb672a7f9e3038f381cc 100644 (file)
@@ -35,8 +35,8 @@ public class ThrustCurveMotor extends Motor {
         */
        public ThrustCurveMotor(Manufacturer manufacturer, String designation, String description, 
                        Motor.Type type, double[] delays, double diameter, double length,
-                       double[] time, double[] thrust, Coordinate[] cg) {
-               super(manufacturer, designation, description, type, delays, diameter, length);
+                       double[] time, double[] thrust, Coordinate[] cg, String digest) {
+               super(manufacturer, designation, description, type, delays, diameter, length, digest);
 
                double max = -1;
 
@@ -157,5 +157,5 @@ public class ThrustCurveMotor extends Motor {
        public Coordinate[] getCGPoints() {
                return cg.clone();
        }
-       
+
 }