File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/main/java/com/falsepattern/lib/internal/proxy Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ public void preInit(FMLPreInitializationEvent e) {
35
35
public void postInit (FMLPostInitializationEvent e ) {
36
36
super .postInit (e );
37
37
chatFuture = Async .asyncWorker .submit (() -> {
38
- long start = System .nanoTime ();
39
38
val updates = updatesFuture .get ();
40
39
if (updates == null || updates .size () == 0 ) return null ;
41
40
val updateText = new ArrayList <IChatComponent >(FormattedText .parse (I18n .format ("falsepatternlib.chat.updatesavailable" )).toChatText ());
@@ -61,8 +60,6 @@ public void postInit(FMLPostInitializationEvent e) {
61
60
updateText .addAll (post );
62
61
}
63
62
}
64
- long end = System .nanoTime ();
65
- FalsePatternLib .getLog ().info ("Constructed in {} ms" , (end - start ) / 1000000L );
66
63
return updateText ;
67
64
});
68
65
}
You can’t perform that action at this time.
0 commit comments