Skip to content

Commit

Permalink
feat: delete deprecated constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil committed Sep 25, 2024
1 parent 2c6b887 commit 81b7568
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 167 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,38 +18,6 @@ public class EquilibriumStream extends Stream {
private static final long serialVersionUID = 1000;
static Logger logger = LogManager.getLogger(EquilibriumStream.class);

/**
* <p>
* Constructor for EquilibriumStream.
* </p>
*/
@Deprecated
public EquilibriumStream() {}

/**
* <p>
* Constructor for EquilibriumStream.
* </p>
*
* @param thermoSystem a {@link neqsim.thermo.system.SystemInterface} object
*/
@Deprecated
public EquilibriumStream(SystemInterface thermoSystem) {
super(thermoSystem);
}

/**
* <p>
* Constructor for EquilibriumStream.
* </p>
*
* @param stream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface} object
*/
@Deprecated
public EquilibriumStream(StreamInterface stream) {
this("EquilibriumStream", stream.getThermoSystem());
}

/**
* Constructor for EquilibriumStream.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,40 +26,6 @@ public class IronIonSaturationStream extends Stream {

protected SystemInterface reactiveThermoSystem;

/**
* <p>
* Constructor for IronIonSaturationStream.
* </p>
*/
@Deprecated
public IronIonSaturationStream() {
this("IronIonSaturationStream");
}

/**
* <p>
* Constructor for IronIonSaturationStream.
* </p>
*
* @param thermoSystem a {@link neqsim.thermo.system.SystemInterface} object
*/
@Deprecated
public IronIonSaturationStream(SystemInterface thermoSystem) {
this("IronIonSaturationStream", thermoSystem);
}

/**
* <p>
* Constructor for IronIonSaturationStream.
* </p>
*
* @param stream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface} object
*/
@Deprecated
public IronIonSaturationStream(StreamInterface stream) {
this("IronIonSaturationStream", stream);
}

/**
* Constructor for IronIonSaturationStream.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,40 +17,6 @@ public class NeqStream extends Stream {
private static final long serialVersionUID = 1000;
static Logger logger = LogManager.getLogger(NeqStream.class);

/**
* <p>
* Constructor for NeqStream.
* </p>
*/
@Deprecated
public NeqStream() {
super("NeqStream");
}

/**
* <p>
* Constructor for NeqStream.
* </p>
*
* @param thermoSystem a {@link neqsim.thermo.system.SystemInterface} object
*/
@Deprecated
public NeqStream(SystemInterface thermoSystem) {
super(thermoSystem);
}

/**
* <p>
* Constructor for NeqStream.
* </p>
*
* @param stream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface} object
*/
@Deprecated
public NeqStream(StreamInterface stream) {
super(stream);
}

/**
* Constructor for NeqStream.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,6 @@ public class ScalePotentialCheckStream extends Stream {

protected SystemInterface reactiveThermoSystem;

/**
* <p>
* Constructor for ScalePotentialCheckStream.
* </p>
*/
@Deprecated
public ScalePotentialCheckStream() {
super("ScalePotentialCheckStream");
}

/**
* <p>
* Constructor for ScalePotentialCheckStream.
* </p>
*
* @param thermoSystem a {@link neqsim.thermo.system.SystemInterface} object
*/
public ScalePotentialCheckStream(SystemInterface thermoSystem) {
super("ScalePotentialCheckStream", thermoSystem);
}

/**
* <p>
* Constructor for ScalePotentialCheckStream.
* </p>
*
* @param stream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface} object
*/
@Deprecated
public ScalePotentialCheckStream(StreamInterface stream) {
super("ScalePotentialCheckStream", stream);
}

/**
* Constructor for ScalePotentialCheckStream.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,40 +44,6 @@ public class Stream extends ProcessEquipmentBaseClass implements StreamInterface
protected double lastPressure = 0.0;
protected double lastFlowRate = 0.0;

/**
* <p>
* Constructor for Stream.
* </p>
*/
@Deprecated
public Stream() {
super("Stream");
}

/**
* <p>
* Constructor for Stream.
* </p>
*
* @param stream a {@link neqsim.processSimulation.processEquipment.stream.StreamInterface} object
*/
@Deprecated
public Stream(StreamInterface stream) {
this("Stream", stream);
}

/**
* <p>
* Constructor for Stream.
* </p>
*
* @param thermoSystem a {@link neqsim.thermo.system.SystemInterface} object
*/
@Deprecated
public Stream(SystemInterface thermoSystem) {
this("Stream", thermoSystem);
}

/**
* Constructor for Stream.
*
Expand Down

0 comments on commit 81b7568

Please sign in to comment.