]> Untitled Git - lemmy.git/commitdiff
Remove unused methods
authorasonix <asonix@asonix.dog>
Mon, 20 Apr 2020 18:09:10 +0000 (13:09 -0500)
committerasonix <asonix@asonix.dog>
Mon, 20 Apr 2020 18:09:10 +0000 (13:09 -0500)
server/src/rate_limit/rate_limiter.rs

index 8f598c3ddc3932df89343944d4610bc71361760b..926e0989f4059912cf90a3c2414a2cc74d516f72 100644 (file)
@@ -48,36 +48,6 @@ impl RateLimiter {
     }
   }
 
-  pub fn check_rate_limit_register(&mut self, ip: &str, check_only: bool) -> Result<(), Error> {
-    self.check_rate_limit_full(
-      RateLimitType::Register,
-      ip,
-      Settings::get().rate_limit.register,
-      Settings::get().rate_limit.register_per_second,
-      check_only,
-    )
-  }
-
-  pub fn check_rate_limit_post(&mut self, ip: &str, check_only: bool) -> Result<(), Error> {
-    self.check_rate_limit_full(
-      RateLimitType::Post,
-      ip,
-      Settings::get().rate_limit.post,
-      Settings::get().rate_limit.post_per_second,
-      check_only,
-    )
-  }
-
-  pub fn check_rate_limit_message(&mut self, ip: &str, check_only: bool) -> Result<(), Error> {
-    self.check_rate_limit_full(
-      RateLimitType::Message,
-      ip,
-      Settings::get().rate_limit.message,
-      Settings::get().rate_limit.message_per_second,
-      check_only,
-    )
-  }
-
   #[allow(clippy::float_cmp)]
   pub(super) fn check_rate_limit_full(
     &mut self,