Revert: Add flag -Dbungee.native=false to disable native code.

Reverted from commit 71b00d644f.
Flag was hiding under: -Dnet.md_5.bungee.native.disable=true
This commit is contained in:
md_5 2016-12-05 09:08:03 +11:00
parent 71b00d644f
commit 3ee7fdd90e

View File

@ -80,6 +80,6 @@ public final class NativeCode<T>
public static boolean isSupported()
{
return "Linux".equals( System.getProperty( "os.name" ) ) && "amd64".equals( System.getProperty( "os.arch" ) ) && Boolean.parseBoolean( System.getProperty( "bungee.native", "true" ) );
return "Linux".equals( System.getProperty( "os.name" ) ) && "amd64".equals( System.getProperty( "os.arch" ) );
}
}