Skip to content

Commit 0703368

Browse files
committed
remove debug code
1 parent 5cc487f commit 0703368

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/java/com/falsepattern/lib/internal/proxy/ClientProxy.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public void preInit(FMLPreInitializationEvent e) {
3535
public void postInit(FMLPostInitializationEvent e) {
3636
super.postInit(e);
3737
chatFuture = Async.asyncWorker.submit(() -> {
38-
long start = System.nanoTime();
3938
val updates = updatesFuture.get();
4039
if (updates == null || updates.size() == 0) return null;
4140
val updateText = new ArrayList<IChatComponent>(FormattedText.parse(I18n.format("falsepatternlib.chat.updatesavailable")).toChatText());
@@ -61,8 +60,6 @@ public void postInit(FMLPostInitializationEvent e) {
6160
updateText.addAll(post);
6261
}
6362
}
64-
long end = System.nanoTime();
65-
FalsePatternLib.getLog().info("Constructed in {} ms", (end - start) / 1000000L);
6663
return updateText;
6764
});
6865
}

0 commit comments

Comments
 (0)