Removed version checker instance
This commit is contained in:
parent
68c6f24876
commit
1abe08cee3
2 changed files with 1 additions and 4 deletions
|
@ -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 )" );
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue