mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-11-15 23:15:10 +01:00
Fix Checkstyle warnings
This commit is contained in:
parent
23029e874e
commit
33bdce7915
@ -40,7 +40,7 @@ public interface VisibilitySettings {
|
||||
/**
|
||||
* Sets the visibility for a specific player, overriding the default value ({@link #getDefaultVisibility()}).
|
||||
* The individual visibility value can be reverted with {@link #resetIndividualVisibility(Player)}.
|
||||
*
|
||||
*
|
||||
* @since 1
|
||||
*/
|
||||
void setIndividualVisibility(@NotNull Player player, @NotNull Visibility visibility);
|
||||
|
@ -42,7 +42,8 @@ public class ProtocolLibHook {
|
||||
String versionNumbers = versionNumbersMatcher.group();
|
||||
|
||||
if (!VersionUtils.isVersionGreaterEqual(versionNumbers, "4.4")) {
|
||||
errorCollector.add("detected old unsupported version of ProtocolLib, support disabled. You must use ProtocolLib 4.4.0 or higher");
|
||||
errorCollector.add("detected old unsupported version of ProtocolLib, support disabled."
|
||||
+ " You must use ProtocolLib 4.4.0 or higher");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -107,7 +107,7 @@ public class StringWithPlaceholders {
|
||||
|
||||
private final String literalString;
|
||||
|
||||
public LiteralStringPart(String literalString) {
|
||||
LiteralStringPart(String literalString) {
|
||||
this.literalString = literalString;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user