From eb25cb901172dfa4d68f44de8f61d52958f53cfa Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Thu, 5 Sep 2024 01:11:15 +0200 Subject: Delete/modify some reflection + more renaming (#3037) --- src/main/java/gregtech/api/threads/RunnableMachineUpdate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/gregtech/api/threads') diff --git a/src/main/java/gregtech/api/threads/RunnableMachineUpdate.java b/src/main/java/gregtech/api/threads/RunnableMachineUpdate.java index d11e176f3d..7b0af48085 100644 --- a/src/main/java/gregtech/api/threads/RunnableMachineUpdate.java +++ b/src/main/java/gregtech/api/threads/RunnableMachineUpdate.java @@ -98,8 +98,8 @@ public class RunnableMachineUpdate implements Runnable { EXECUTOR_SERVICE.shutdownNow(); // Cancel currently executing tasks // Wait a while for tasks to respond to being cancelled if (!EXECUTOR_SERVICE.awaitTermination(60, TimeUnit.SECONDS)) { - GTMod.GT_FML_LOGGER.error( - "Well this didn't terminated well... GT_Runnable_MachineBlockUpdate.shutdownExecutorService"); + GTMod.GT_FML_LOGGER + .error("Well this didn't terminated well... RunnableMachineUpdate.shutdownExecutorService"); } } } catch (InterruptedException ie) { @@ -114,7 +114,7 @@ public class RunnableMachineUpdate implements Runnable { // (Re-)Cancel in case EXECUTOR_SERVICE.shutdownNow(); } finally { - GTMod.GT_FML_LOGGER.info("Leaving... GT_Runnable_MachineBlockUpdate.shutdownExecutorService"); + GTMod.GT_FML_LOGGER.info("Leaving... RunnableMachineUpdate.shutdownExecutorService"); } } -- cgit