Skip to content

Commit

Permalink
refact: make class abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil committed Oct 27, 2024
1 parent f5b1e8f commit 553e32d
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

/**
* <p>
* PhysicalPropertyMethod class.
* Abstract PhysicalPropertyMethod class.
* </p>
*
* @author esol
* @version $Id: $Id
*/
public class PhysicalPropertyMethod implements PhysicalPropertyMethodInterface {
public abstract class PhysicalPropertyMethod implements PhysicalPropertyMethodInterface {
private static final long serialVersionUID = 1000;
static Logger logger = LogManager.getLogger(PhysicalPropertyMethod.class);

Expand All @@ -42,15 +42,9 @@ public PhysicalPropertyMethod clone() {
return properties;
}

/** {@inheritDoc} */
@Override
public void setPhase(
neqsim.physicalproperties.physicalpropertysystem.PhysicalPropertiesInterface phase) {}

/** {@inheritDoc} */
@Override
public void tuneModel(double val, double temperature, double pressure) {
throw new UnsupportedOperationException("Unimplemented method 'tuneModel'");
}
// should contain phase objects ++ get diffusivity methods .. more ?
}

0 comments on commit 553e32d

Please sign in to comment.