From 19bdb89c0f21f3ea093dc285395a757c696776bb Mon Sep 17 00:00:00 2001 From: MagicBot Date: Sat, 11 May 2024 08:30:32 -0400 Subject: [PATCH] Unused variable removed --- src/engine/loot/WorkOrder.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine/loot/WorkOrder.java b/src/engine/loot/WorkOrder.java index 548d7ccd..77def743 100644 --- a/src/engine/loot/WorkOrder.java +++ b/src/engine/loot/WorkOrder.java @@ -53,7 +53,6 @@ public class WorkOrder implements Delayed { public long rollingDuration; public long completionTime; public boolean runCompleted = false; - public boolean runCanceled = false; // This collection is serialized to the vendor rolling window in ManageNPCMsg. @@ -246,7 +245,6 @@ public class WorkOrder implements Delayed { "rollingDuration: " + duration + "\r\n" + "completionTime: " + localDateTime + "\r\n" + "runCompleted: " + this.runCompleted + "\r\n" + - "runCanceled: " + this.runCanceled + "\r\n" + "productionCost: " + this.production_cost.toString() + "\r\n" + "totalProductionCost:: " + this.production_cost_total.toString();