Move event and metadata handling into abstract base class.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / RateLimitingFilter.java
index fc89a50..b2890ca 100644 (file)
@@ -49,7 +49,6 @@ public class RateLimitingFilter extends DummyFilter {
         * @param name
         *              The name of the filter
         * @param rate
-        *              The limiting rate (in bytes/second)
         */
        public RateLimitingFilter(String name, int rate) {
                this(name, rate, 0);
@@ -64,7 +63,6 @@ public class RateLimitingFilter extends DummyFilter {
         *              The limiting rate (in bytes/second)
         * @param fastStartTime
         *              The amount of time at the start of the filtering during which no delay
-        *              will occur (in milliseconds)
         */
        public RateLimitingFilter(String name, int rate, long fastStartTime) {
                super(name);