diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-10-25 23:31:24 -0400 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-10-25 23:31:24 -0400 |
commit | 53bfa6e90fc1a80cf701b3ae2cbc5bbfe0f31ccd (patch) | |
tree | 42944e5247ed1555dcb33cdb0672cd98fdf0b360 | |
parent | 2d506f220676ce01c590cd32d66f98c5c43d63fe (diff) | |
download | Skyblocker-53bfa6e90fc1a80cf701b3ae2cbc5bbfe0f31ccd.tar.gz Skyblocker-53bfa6e90fc1a80cf701b3ae2cbc5bbfe0f31ccd.tar.bz2 Skyblocker-53bfa6e90fc1a80cf701b3ae2cbc5bbfe0f31ccd.zip |
Update Javadocs
-rw-r--r-- | src/main/java/de/hysky/skyblocker/utils/Utils.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main/java/de/hysky/skyblocker/utils/Utils.java b/src/main/java/de/hysky/skyblocker/utils/Utils.java index f09d16ed..1205c71b 100644 --- a/src/main/java/de/hysky/skyblocker/utils/Utils.java +++ b/src/main/java/de/hysky/skyblocker/utils/Utils.java @@ -38,13 +38,19 @@ public class Utils { private static boolean isInDungeons = false; private static boolean isInjected = false; /** - * The following fields store data returned from /locraw: {@link #profile}, {@link #server}, {@link #gameType}, {@link #locationRaw}, and {@link #map}. + * The profile name parsed from the player list. */ - @SuppressWarnings("JavadocDeclaration") @NotNull private static String profile = ""; + /** + * The profile id parsed from the chat. + */ @NotNull private static String profileId = ""; + /** + * The following fields store data returned from /locraw: {@link #server}, {@link #gameType}, {@link #locationRaw}, and {@link #map}. + */ + @SuppressWarnings("JavadocDeclaration") @NotNull private static String server = ""; @NotNull |