mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-27 01:46:41 +00:00
Cleanup dependencies
This commit is contained in:
@ -36,6 +36,8 @@ import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import java.time.Duration;
|
||||
import java.time.Instant;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
@ -161,6 +163,24 @@ public class TestOfflinePermissible implements OfflinePlayer, Permissible {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public <E extends BanEntry<? super PlayerProfile>> @Nullable E ban(
|
||||
@Nullable final String reason,
|
||||
@Nullable final Instant expires,
|
||||
@Nullable final String source
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <E extends BanEntry<? super PlayerProfile>> @Nullable E ban(
|
||||
@Nullable final String reason,
|
||||
@Nullable final Duration duration,
|
||||
@Nullable final String source
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable BanEntry<org.bukkit.profile.PlayerProfile> ban(
|
||||
@Nullable final String reason,
|
||||
|
Reference in New Issue
Block a user