Skip to content

Commit 954c1ff

Browse files
committed
fix: cargo fmt
1 parent 6545379 commit 954c1ff

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

sentry/src/event_aggregator.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ use crate::event_reducer;
55
use crate::Application;
66
use crate::ResponseError;
77
use crate::Session;
8+
use async_std::sync::RwLock;
89
use chrono::{Duration, Utc};
910
use primitives::adapter::Adapter;
1011
use primitives::sentry::{Event, EventAggregate};
1112
use primitives::{Channel, ChannelId};
1213
use std::collections::HashMap;
14+
use std::sync::Arc;
1315
use std::time::Duration as TimeDuration;
1416
use tokio::time::delay_for;
1517

16-
// use futures::
17-
use async_std::sync::RwLock;
18-
use std::sync::Arc;
19-
2018
#[derive(Default, Clone)]
2119
pub struct EventAggregator {
2220
aggregate: Arc<RwLock<HashMap<String, EventAggregate>>>,

0 commit comments

Comments
 (0)