Skip to content

Commit

Permalink
Fixing spotbugswarnings - (Task #1184)
Browse files Browse the repository at this point in the history
- Fixing Thermal Concept

---
Task #1184: Updating to Eclipse 2024/03 and all dependencies
  • Loading branch information
PhilMFischer committed Jul 10, 2024
1 parent 441ed7c commit bd6a1ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public AnalysisResult importCadSimulationOutput(String path, String simulationOu
String[] entry = line[0].replace("**", "").split(",");
numberOfNodes[j] = Integer.parseInt(entry[0]);
totalNumberOfNodes += numberOfNodes[j];
totalNumberOfElements += Integer.valueOf(entry[1]);
totalNumberOfElements += Integer.parseInt(entry[1]);
j++;
}
}
Expand Down

0 comments on commit bd6a1ec

Please sign in to comment.