From 180b2f6745958d9b71110f07be00a0f819c4504c Mon Sep 17 00:00:00 2001 From: Technus Date: Fri, 17 Apr 2020 06:51:13 +0200 Subject: Remove old comment --- .../java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java b/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java index c3c7cab6af..727faf29e2 100644 --- a/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java +++ b/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java @@ -35,10 +35,7 @@ public class GT_Runnable_MachineBlockUpdate implements Runnable { this.y = aY; this.z = aZ; } - - /** - * If the thread is idle, sets new values and remove the idle flag, otherwise, queue the cooridinates. - */ + public static void setMachineUpdateValues(World aWorld, int aX, int aY, int aZ) { EXECUTOR_SERVICE.submit(new GT_Runnable_MachineBlockUpdate(aWorld, aX, aY, aZ)); } -- cgit