Skip to content

Commit

Permalink
make phaseFractionMinimumLimit static
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed Oct 3, 2024
1 parent 6468ce9 commit 80d13d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
public interface ThermodynamicModelSettings extends java.io.Serializable {
/** Constant <code>phaseFractionMinimumLimit=1e-12</code>. */
double phaseFractionMinimumLimit = 1e-12;
static double phaseFractionMinimumLimit = 1e-12;
/** Constant <code>MAX_NUMBER_OF_COMPONENTS=100</code>. */
int MAX_NUMBER_OF_COMPONENTS = 100;
}

0 comments on commit 80d13d5

Please sign in to comment.