Skip to content

Commit

Permalink
fix: compilation error due to a function being set as static but aces…
Browse files Browse the repository at this point in the history
…sing instance data
  • Loading branch information
Scoppio committed Jan 9, 2025
1 parent 080821c commit fd739ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/gui/dialog/DataLoadingDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ public Campaign doInBackground() throws Exception {
* @param retVal The campaign being checked for unsupported units. This includes the unit list
* and the quartermaster who handles the selling process.
*/
private static void sellUnsupportedUnits(Campaign retVal) {
private void sellUnsupportedUnits(Campaign retVal) {
List<Unit> soldUnits = new ArrayList<>();
for (Unit unit : retVal.getUnits()) {
Entity entity = unit.getEntity();
Expand Down

0 comments on commit fd739ba

Please sign in to comment.