Some small changes

This commit is contained in:
Tim203 2021-06-06 00:53:58 +02:00
parent 50b51f5f57
commit 01492647fc
No known key found for this signature in database
GPG key ID: 064EE9F5BF7C3EE8
15 changed files with 33 additions and 54 deletions

View file

@ -25,7 +25,7 @@
package org.geysermc.floodgate.util;
public class Base64Utils {
public final class Base64Utils {
public static int getEncodedLength(int length) {
if (length <= 0) {
return -1;

View file

@ -28,7 +28,7 @@ package org.geysermc.floodgate.util;
import lombok.Getter;
import lombok.Setter;
public class FloodgateConfigHolder {
public final class FloodgateConfigHolder {
@Getter
@Setter
private static Object config;

View file

@ -48,7 +48,7 @@ public final class LinkedPlayer implements Cloneable {
*/
private final UUID bedrockId;
/**
* If the LinkedPlayer is send from a different platform. For example the LinkedPlayer is from
* If the LinkedPlayer is sent from a different platform. For example the LinkedPlayer is from
* Bungee but the data has been sent to the Bukkit server.
*/
private boolean fromDifferentPlatform = false;