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) {
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 }
You can’t perform that action at this time.
0 commit comments