Enable NetworkCheckerHandler to use updated String methods
The old method returned a boolean, and as you can see, its internal method has been deprecated.
boolean check(Map, Side) -> String checkCompatible(Map, Side)
The new method returns a String, which means that custom incompatibility information can be provided.
This PR just turns on this feature, and does not add anything.
In fact, this method was originally inaccessible (this deprecation is meaningless(x
What's the purpose of this I can't find new features in your comments
What's the purpose of this I can't find new features in your comments
The old method returned a boolean, and as you can see, its internal method has been deprecated.
boolean check(Map, Side) -> String checkCompatible(Map, Side)
The new method returns a String, which means that custom incompatibility information can be provided.
This PR just turns on this feature, and does not add anything.
In fact, this method was originally inaccessible (this deprecation is meaningless(x
Should mention that in comment Also, many deprecations were meant to be removed in 1.13, which do not apply here
Should mention that in comment