šŸ”„ Remove unused field
authorDavid ā€˜Bombeā€™ Roden <bombe@pterodactylus.net>
Wed, 11 Dec 2019 13:56:20 +0000 (14:56 +0100)
committerDavid ā€˜Bombeā€™ Roden <bombe@pterodactylus.net>
Wed, 11 Dec 2019 15:59:26 +0000 (16:59 +0100)
src/main/java/net/pterodactylus/sone/web/WebInterface.java

index 96d9d9a..07f1476 100644 (file)
@@ -21,7 +21,6 @@ import static com.google.common.collect.FluentIterable.from;
 import static java.util.logging.Logger.getLogger;
 
 import java.util.Collection;
-import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Map;
@@ -30,7 +29,6 @@ import java.util.TimeZone;
 import java.util.UUID;
 import java.util.concurrent.Executors;
 import java.util.concurrent.ScheduledExecutorService;
-import java.util.concurrent.ScheduledFuture;
 import java.util.concurrent.TimeUnit;
 import java.util.logging.Logger;
 import javax.annotation.Nonnull;
@@ -176,9 +174,6 @@ public class WebInterface implements SessionProvider {
        /** Notifications for sone inserts. */
        private final Map<Sone, TemplateNotification> soneInsertNotifications = new HashMap<>();
 
-       /** Sone locked notification ticker objects. */
-       private final Map<Sone, ScheduledFuture<?>> lockedSonesTickerObjects = Collections.synchronizedMap(new HashMap<Sone, ScheduledFuture<?>>());
-
        /** The ā€œinserting imagesā€ notification. */
        private final ListNotification<Image> insertingImagesNotification;