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: typo #434

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -832,8 +832,8 @@ public double getIsentropicEfficiency() {

/** {@inheritDoc} */
@Override
public void setIsentropicEfficiency(double isentropicEfficientcy) {
this.isentropicEfficiency = isentropicEfficientcy;
public void setIsentropicEfficiency(double isentropicEfficiency) {
this.isentropicEfficiency = isentropicEfficiency;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public interface CompressorInterface extends ProcessEquipmentInterface, TwoPortI
* setIsentropicEfficiency.
* </p>
*
* @param isentropicEfficientcy a double
* @param isentropicEfficiency a double
*/
public void setIsentropicEfficiency(double isentropicEfficientcy);
public void setIsentropicEfficiency(double isentropicEfficiency);

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
import java.awt.FlowLayout;
import java.text.DecimalFormat;
import java.text.FieldPosition;

import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;

import neqsim.processSimulation.processEquipment.ProcessEquipmentBaseClass;
import neqsim.processSimulation.processEquipment.stream.StreamInterface;
import neqsim.thermo.ThermodynamicConstantsInterface;
Expand Down Expand Up @@ -367,7 +365,7 @@ public SystemInterface getThermoSystem() {
* Getter for the field <code>isentropicEfficiency</code>.
* </p>
*
* @return the isentropicEfficientcy
* @return the isentropicEfficiency
*/
public double getIsentropicEfficiency() {
return isentropicEfficiency;
Expand All @@ -378,10 +376,10 @@ public double getIsentropicEfficiency() {
* Setter for the field <code>isentropicEfficiency</code>.
* </p>
*
* @param isentropicEfficientcy the isentropicEfficientcy to set
* @param isentropicEfficiency the isentropicEfficiency to set
*/
public void setIsentropicEfficiency(double isentropicEfficientcy) {
this.isentropicEfficiency = isentropicEfficientcy;
public void setIsentropicEfficiency(double isentropicEfficiency) {
this.isentropicEfficiency = isentropicEfficiency;
}

/**
Expand Down