diff --git a/core/src/net/sf/openrocket/rocketcomponent/AxialStage.java b/core/src/net/sf/openrocket/rocketcomponent/AxialStage.java index 40725d608..df2285c37 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/AxialStage.java +++ b/core/src/net/sf/openrocket/rocketcomponent/AxialStage.java @@ -13,7 +13,6 @@ public class AxialStage extends ComponentAssembly implements FlightConfigurableC protected FlightConfigurableParameterSet separations; /** number of stages */ protected int stageNumber; - private FlightConfigurationId stageId; /** * default constructor, builds a rocket with zero stages @@ -22,7 +21,6 @@ public class AxialStage extends ComponentAssembly implements FlightConfigurableC this.separations = new FlightConfigurableParameterSet( new StageSeparationConfiguration()); this.axialMethod = AxialMethod.AFTER; this.stageNumber = 0; - this.stageId = new FlightConfigurationId(); } /** @@ -92,13 +90,8 @@ public class AxialStage extends ComponentAssembly implements FlightConfigurableC protected RocketComponent copyWithOriginalID() { AxialStage copy = (AxialStage) super.copyWithOriginalID(); copy.separations = new FlightConfigurableParameterSet(separations); - copy.stageId = new FlightConfigurationId(); return copy; } - - public FlightConfigurationId getStageId() { - return stageId; - } /** * Stages may be positioned relative to other stages. In that case, this will set the stage number diff --git a/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java b/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java index 757e11a49..b2cf9ce61 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java +++ b/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java @@ -47,9 +47,9 @@ public class FlightConfiguration implements FlightConfigurableParameter