Begin implementation of CheckStyle style checking

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-04-23 14:00:20 +10:00
parent 30a442aef7
commit c240b58f66
88 changed files with 246 additions and 192 deletions

View File

@@ -262,7 +262,7 @@ public final class MapCursor {
/**
*
* @return the value
* @return the value
* @deprecated Magic value
*/
@Deprecated

View File

@@ -34,7 +34,7 @@ public abstract class MapRenderer {
*
* @return True if contextual, false otherwise.
*/
final public boolean isContextual() {
public final boolean isContextual() {
return contextual;
}
@@ -52,6 +52,6 @@ public abstract class MapRenderer {
* @param canvas The canvas to use for rendering.
* @param player The player who triggered the rendering.
*/
abstract public void render(@NotNull MapView map, @NotNull MapCanvas canvas, @NotNull Player player);
public abstract void render(@NotNull MapView map, @NotNull MapCanvas canvas, @NotNull Player player);
}