Archiviert
13
0

Restore backwards compatibility with server pings

I don't know why people are using 1.8.1, but whatever
Dieser Commit ist enthalten in:
Dan Mulloy 2015-11-27 17:02:41 -05:00
Ursprung b17af68716
Commit 0c705ef59d

Datei anzeigen

@ -1652,16 +1652,22 @@ public class MinecraftReflection {
return getMinecraftClass("TileEntity");
}
private static Class<?> gsonClass = null;
/**
* Retrieve the Gson class used by Minecraft.
* @return The GSON class.
* @return The Gson class.
*/
public static Class<?> getMinecraftGsonClass() {
try {
return getClass("com.google.gson.Gson");
} catch (RuntimeException e) {
return getClass("org.bukkit.craftbukkit.libs.com.google.gson.Gson");
if (gsonClass == null) {
try {
return gsonClass = getClass("org.bukkit.craftbukkit.libs.com.google.gson.Gson");
} catch (RuntimeException e) {
return gsonClass = getClass("com.google.gson.Gson");
}
}
return gsonClass;
}
/**