Skip to content

Commit d63401f

Browse files
committed
Cargo fmt
1 parent 2087d64 commit d63401f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/src/store.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,7 @@ impl Storelike for Store {
178178

179179
// TODO: Fix this for local stores, include external does not make sense here
180180
fn all_resources(&self, _include_external: bool) -> Box<dyn Iterator<Item = Resource>> {
181-
Box::new(
182-
self.hashmap
183-
.lock()
184-
.unwrap()
185-
.clone().into_values(),
186-
)
181+
Box::new(self.hashmap.lock().unwrap().clone().into_values())
187182
}
188183

189184
fn get_server_url(&self) -> &AtomicUrl {

0 commit comments

Comments
 (0)