Skip to content

Commit

Permalink
Fix this-escape warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JLyne committed Jan 14, 2024
1 parent 005c39b commit 0f3a527
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import java.util.Optional;
import java.util.UUID;

public class ProxyDiscordHandler {
public final class ProxyDiscordHandler {
private final ProxyQueuesImpl plugin;
private static VerificationManager verificationManager;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import java.util.concurrent.atomic.AtomicInteger;


public class ProxyQueueImpl implements uk.co.notnull.proxyqueues.api.queues.ProxyQueue {
public final class ProxyQueueImpl implements uk.co.notnull.proxyqueues.api.queues.ProxyQueue {

private final ProxyQueuesImpl proxyQueues;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;

public class QueueHandlerImpl implements QueueHandler {
public final class QueueHandlerImpl implements QueueHandler {

private final ConcurrentHashMap<RegisteredServer, ProxyQueue> queues;
private final SettingsManager settingsManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import java.time.Instant;
import java.time.temporal.ChronoUnit;

public class QueuePlayerImpl implements QueuePlayer {
public final class QueuePlayerImpl implements QueuePlayer {

private final BossBar bossBar;
private boolean connecting;
Expand Down

0 comments on commit 0f3a527

Please sign in to comment.