From 23ebfcb9bf3d481ddb9f2f076dbb4ab948f49eb2 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 28 Oct 2023 17:42:59 -0500 Subject: [PATCH] Remove duplicate "DH" name for world ticker threads --- .../seibel/distanthorizons/core/world/DhClientServerWorld.java | 2 +- .../com/seibel/distanthorizons/core/world/DhClientWorld.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java index f1194bb13..935299539 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java @@ -42,7 +42,7 @@ public class DhClientServerWorld extends AbstractDhWorld implements IDhClientWor private final HashSet dhLevels = new HashSet<>(); public final LocalSaveStructure saveStructure = new LocalSaveStructure(); - public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("DH Client Server World Ticker Thread", 2); + public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client Server World Ticker Thread", 2); public EventLoop eventLoop = new EventLoop(this.dhTickerThread, this::_clientTick); //TODO: Rate-limit the loop public F3Screen.DynamicMessage f3Message; diff --git a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java index 99f04e5a2..9daa63b94 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java @@ -50,7 +50,7 @@ public class DhClientWorld extends AbstractDhWorld implements IDhClientWorld // private final NetworkClient networkClient; - public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("DH Client World Ticker Thread"); + public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client World Ticker Thread"); public EventLoop eventLoop = new EventLoop(this.dhTickerThread, this::_clientTick);