Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rm more comp ctor #342

Merged
merged 4 commits into from
Feb 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refact: removed unused ctors
  • Loading branch information
asmfstatoil committed Feb 28, 2022
commit 4a680b45ec6850c1d860b594026ce6826a2a740f
20 changes: 0 additions & 20 deletions src/main/java/neqsim/thermo/component/Component.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,26 +88,6 @@ abstract class Component implements ComponentInterface {
private double associationEnergySAFT = 0;
static Logger logger = LogManager.getLogger(Component.class);

/**
* <p>
* Constructor for Component.
* </p>
*/
// Class methods
public Component() {}

/**
* <p>
* Constructor for Component.
* </p>
*
* @param number a int
* @param moles a double
*/
public Component(int number, double moles) {
numberOfMoles = moles;
}

/**
* <p>
* Constructor for Component.
Expand Down