We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2087d64 commit d63401fCopy full SHA for d63401f
lib/src/store.rs
@@ -178,12 +178,7 @@ impl Storelike for Store {
178
179
// TODO: Fix this for local stores, include external does not make sense here
180
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
- )
+ Box::new(self.hashmap.lock().unwrap().clone().into_values())
187
}
188
189
fn get_server_url(&self) -> &AtomicUrl {
0 commit comments