X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fcom%2Fbillkuker%2Frocketry%2Fmotorsim%2Fio%2FENGExporter.java;h=1a9f273c1b8daf9c4060c3571ba1ade19e38650f;hb=c65affc68738d3d1fcfbcaa8628e6b556e121d74;hp=d1f4879f621f3fe9e5d88036238b4dd562ad9c2e;hpb=c35a48d57f566aedd29bafaa079b8992120fbb5a;p=sw%2Fmotorsim diff --git a/src/com/billkuker/rocketry/motorsim/io/ENGExporter.java b/src/com/billkuker/rocketry/motorsim/io/ENGExporter.java index d1f4879..1a9f273 100644 --- a/src/com/billkuker/rocketry/motorsim/io/ENGExporter.java +++ b/src/com/billkuker/rocketry/motorsim/io/ENGExporter.java @@ -15,8 +15,8 @@ import javax.measure.unit.SI; import org.jscience.physics.amount.Amount; import com.billkuker.rocketry.motorsim.Burn; -import com.billkuker.rocketry.motorsim.CylindricalChamber; import com.billkuker.rocketry.motorsim.GraphSimplifier; +import com.billkuker.rocketry.motorsim.ICylindricalChamber; public class ENGExporter { @@ -32,7 +32,7 @@ public class ENGExporter { public static void export(Burn b, OutputStream os) throws IOException { - CylindricalChamber cha = (CylindricalChamber) b.getMotor().getChamber(); + ICylindricalChamber cha = (ICylindricalChamber) b.getMotor().getChamber(); NumberFormat nf = new DecimalFormat("00.####");