Suppress some warnings.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 3 Aug 2014 08:43:17 +0000 (10:43 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 3 Aug 2014 08:53:19 +0000 (10:53 +0200)
src/main/java/net/pterodactylus/sone/core/SoneRescuer.java

index ed3d819..f45e351 100644 (file)
@@ -74,6 +74,7 @@ public class SoneRescuer extends AbstractService {
         *
         * @return {@code true} if the Sone rescuer is currently fetching a Sone
         */
         *
         * @return {@code true} if the Sone rescuer is currently fetching a Sone
         */
+       @SuppressWarnings("unused") // used in rescue.html
        public boolean isFetching() {
                return fetching;
        }
        public boolean isFetching() {
                return fetching;
        }
@@ -83,6 +84,7 @@ public class SoneRescuer extends AbstractService {
         *
         * @return The edition that is currently being downloaded
         */
         *
         * @return The edition that is currently being downloaded
         */
+       @SuppressWarnings("unused") // used in rescue.html
        public long getCurrentEdition() {
                return currentEdition;
        }
        public long getCurrentEdition() {
                return currentEdition;
        }
@@ -102,6 +104,7 @@ public class SoneRescuer extends AbstractService {
         *
         * @return The next edition the Sone rescuer can download
         */
         *
         * @return The next edition the Sone rescuer can download
         */
+       @SuppressWarnings("unused") // used in rescue.html
        public long getNextEdition() {
                return currentEdition - 1;
        }
        public long getNextEdition() {
                return currentEdition - 1;
        }
@@ -124,6 +127,7 @@ public class SoneRescuer extends AbstractService {
         * @return {@code true} if the last fetch was successful, {@code false}
         *         otherwise
         */
         * @return {@code true} if the last fetch was successful, {@code false}
         *         otherwise
         */
+       @SuppressWarnings("unused") // used in rescue.html
        public boolean isLastFetchSuccessful() {
                return lastFetchSuccessful;
        }
        public boolean isLastFetchSuccessful() {
                return lastFetchSuccessful;
        }