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

refact: remove redundant getters/setters #942

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
41 changes: 0 additions & 41 deletions src/main/java/neqsim/thermo/phase/PhasePCSAFTRahmat.java
Original file line number Diff line number Diff line change
Expand Up @@ -1438,45 +1438,4 @@ public double molarVolume(double pressure, double temperature, double A, double
return getMolarVolume();
}

/** {@inheritDoc} */
@Override
public double getDmeanSAFT() {
return dmeanSAFT;
}

/** {@inheritDoc} */
@Override
public void setDmeanSAFT(double dmeanSAFT) {
this.dmeanSAFT = dmeanSAFT;
}

/** {@inheritDoc} */
@Override
public double getNmSAFT() {
return nmSAFT;
}

/** {@inheritDoc} */
@Override
public void setNmSAFT(double nmSAFT) {
this.nmSAFT = nmSAFT;
}

/** {@inheritDoc} */
@Override
public double getF2dispSumTerm() {
return F2dispSumTerm;
}

/** {@inheritDoc} */
@Override
public void setF2dispSumTerm(double F2dispSumTerm) {
this.F2dispSumTerm = F2dispSumTerm;
}

/** {@inheritDoc} */
@Override
public void setF2dispZHCdm(double F2dispZHCdm) {
this.F2dispZHCdm = F2dispZHCdm;
}
}
Loading