simplify javadoc of updateShowCoordinates() in WorldCache.java (#2162)

This commit is contained in:
Konicai 2021-04-21 19:05:53 -04:00 committed by GitHub
parent 0a79eb92ac
commit 873e37e1c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,11 +75,10 @@ public class WorldCache {
/** /**
* Tell the client to hide or show the coordinates. * Tell the client to hide or show the coordinates.
* *
* If {@link #isPrefersShowCoordinates()} is true, coordinates will be shown, unless either of the following conditions apply: * If {@link #prefersShowCoordinates} is true, coordinates will be shown, unless either of the following conditions apply: <br>
* * <br>
* <li> {@link GeyserSession#isReducedDebugInfo()} is enabled * {@link GeyserSession#reducedDebugInfo} is enabled
* <li> {@link GeyserConfiguration#isShowCoordinates()} is disabled * {@link GeyserConfiguration#isShowCoordinates()} is disabled
*
*/ */
public void updateShowCoordinates() { public void updateShowCoordinates() {
boolean allowShowCoordinates = !session.isReducedDebugInfo() && session.getConnector().getConfig().isShowCoordinates(); boolean allowShowCoordinates = !session.isReducedDebugInfo() && session.getConnector().getConfig().isShowCoordinates();