mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-26 02:57:37 +01:00
unused constructors
This commit is contained in:
parent
9947afe18b
commit
ae377307c7
@ -2,7 +2,6 @@ package net.minestom.server.thread;
|
|||||||
|
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.function.Supplier;
|
import java.util.function.Supplier;
|
||||||
@ -13,14 +12,6 @@ public class MinestomThread extends Thread {
|
|||||||
public static final AtomicInteger LOCAL_COUNT = new AtomicInteger();
|
public static final AtomicInteger LOCAL_COUNT = new AtomicInteger();
|
||||||
private Object[] locals = new Object[0];
|
private Object[] locals = new Object[0];
|
||||||
|
|
||||||
public MinestomThread(@Nullable Runnable target, String name) {
|
|
||||||
super(target, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
public MinestomThread(Runnable target) {
|
|
||||||
super(target);
|
|
||||||
}
|
|
||||||
|
|
||||||
public MinestomThread(@NotNull String name) {
|
public MinestomThread(@NotNull String name) {
|
||||||
super(name);
|
super(name);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user