From f3b200da85e3f5c05e51adbde718c6c720ddb40b Mon Sep 17 00:00:00 2001 From: ripytide Date: Mon, 27 May 2024 17:01:11 +0100 Subject: [PATCH] remove todos --- src/filter/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/filter/mod.rs b/src/filter/mod.rs index ef4b5918..04b4a6d1 100644 --- a/src/filter/mod.rs +++ b/src/filter/mod.rs @@ -109,8 +109,6 @@ where F: Fn(K) -> Q::Subpixel, K: num::Num + Copy + From, { - //TODO refactor this to use the `crate::maps` functions once that lands - let (width, height) = image.dimensions(); let mut out = Image::::new(width, height); @@ -134,8 +132,6 @@ where F: Fn(K) -> Q::Subpixel + Send + Sync, K: Num + Copy + From + Sync, { - //TODO refactor this to use the `crate::maps` functions once that lands - use rayon::iter::IndexedParallelIterator; use rayon::iter::ParallelIterator;