1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-24 01:09:30 +00:00

Some small changes

This commit is contained in:
Tim203
2021-06-06 00:53:58 +02:00
parent 50b51f5f57
commit 01492647fc
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;