1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-02 10:52:37 +02:00

Some small fixes

This commit is contained in:
Luck
2016-09-04 16:24:36 +01:00
parent 36cd388607
commit 23df8a2df8
6 changed files with 8 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ import java.util.UUID;
/**
* Represents a single entry in a log
*/
@SuppressWarnings({"unused", "WeakerAccess"})
public class LogEntry implements Comparable<LogEntry> {
public static LogEntryBuilder builder() {
return new LogEntryBuilder();

View File

@@ -32,6 +32,7 @@ import java.util.Optional;
* <p> Use {@link LuckPermsApi#buildNode(String)} to get an instance.
* @since 1.6
*/
@SuppressWarnings("unused")
public interface Node extends Map.Entry<String, Boolean> {
/**

View File

@@ -35,6 +35,7 @@ import java.util.UUID;
*
* <p> WARNING: THIS IS ONLY EFFECTIVE FOR ONLINE PLAYERS. USE THE DATASTORE METHODS FOR OFFLINE PLAYERS.
*/
@SuppressWarnings("unused")
public interface UuidCache {
/**