Removed version checker instance

This commit is contained in:
thatsIch 2014-11-04 00:39:59 +01:00
parent 68c6f24876
commit 1abe08cee3
2 changed files with 1 additions and 4 deletions

View file

@ -131,7 +131,7 @@ public class AppEng
if ( AEConfig.instance.isFeatureEnabled( AEFeature.VersionChecker ) )
{
AELog.info( "Starting VersionChecker" );
startService( "AE2 VersionChecker", new Thread( VersionChecker.instance = new VersionChecker() ) );
startService( "AE2 VersionChecker", new Thread( new VersionChecker() ) );
}
AELog.info( "PreInit ( end " + star.elapsed( TimeUnit.MILLISECONDS ) + "ms )" );

View file

@ -20,9 +20,6 @@ import cpw.mods.fml.common.event.FMLInterModComms;
public class VersionChecker implements Runnable
{
public static VersionChecker instance = null;
private long delay = 0;
private boolean VersionChecker = true;