Skip to content

Commit cf59e83

Browse files
committed
remove mut
1 parent fad11f1 commit cf59e83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/io.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ impl PersistentGraphIO {
281281
};
282282
let mut writer = StreamingWriter::new(&self.store_path, opts);
283283

284-
let mut iter = self.store.quads_for_pattern(None, None, None, None);
284+
let iter = self.store.quads_for_pattern(None, None, None, None);
285285
for q in iter {
286286
let q = q?;
287287
// Dataset id: reuse graph name string; Graph name: same string

0 commit comments

Comments
 (0)