Skip to content

Commit

Permalink
new fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed Feb 16, 2024
1 parent 32f84be commit 7ceb0af
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ public Stream clone() {
if (stream != null) {
clonedSystem.setStream((Stream) stream.clone());
}
clonedSystem.thermoSystem = thermoSystem.clone();
if (thermoSystem != null) {
clonedSystem.thermoSystem = thermoSystem.clone();
}


return clonedSystem;
}

Expand Down

0 comments on commit 7ceb0af

Please sign in to comment.