summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-19 07:13:34 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-19 07:13:34 +0100
commit8ce16aba6204cb5c02a709cdf79c309f7b7e0196 (patch)
tree4c51ad56a665e3ac2cc3c1c45cd4360825cbd7f3 /core
parent5007e548ada35b56aa26d68688ded47d0ea1f25b (diff)
downloadiced-8ce16aba6204cb5c02a709cdf79c309f7b7e0196.tar.gz
iced-8ce16aba6204cb5c02a709cdf79c309f7b7e0196.tar.bz2
iced-8ce16aba6204cb5c02a709cdf79c309f7b7e0196.zip
Fix redundant import in `window::redraw_request`
Diffstat (limited to 'core')
-rw-r--r--core/src/window/redraw_request.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/window/redraw_request.rs b/core/src/window/redraw_request.rs
index 8a59e83c..b0c000d6 100644
--- a/core/src/window/redraw_request.rs
+++ b/core/src/window/redraw_request.rs
@@ -13,7 +13,7 @@ pub enum RedrawRequest {
#[cfg(test)]
mod tests {
use super::*;
- use crate::time::{Duration, Instant};
+ use crate::time::Duration;
#[test]
fn ordering() {