Include Sone ID in downloader thread name.
[Sone.git] / src / main / java / net / pterodactylus / sone / utils / IntegerRangePredicate.java
index db6a841..11eff29 100644 (file)
@@ -51,9 +51,6 @@ public class IntegerRangePredicate implements Predicate<Integer> {
        // PREDICATE METHODS
        //
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public boolean apply(Integer value) {
                return (value != null) && (value >= lowerBound) && (value <= upperBound);