File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ pub fn make_graphs(before: &Graph, after: &Graph) {
65
65
let mut after_nodes_file = File :: create ( "after_nodes.csv" ) . unwrap ( ) ;
66
66
67
67
// Write before's information to before_edges and before_nodes
68
- output_csv ( & before, & mut before_edges_file, & mut before_nodes_file) ;
68
+ output_csv ( before, & mut before_edges_file, & mut before_nodes_file) ;
69
69
// Write afters's information to after_edges and after_nodes
70
- output_csv ( & after, & mut after_edges_file, & mut after_nodes_file) ;
70
+ output_csv ( after, & mut after_edges_file, & mut after_nodes_file) ;
71
71
}
Original file line number Diff line number Diff line change @@ -310,16 +310,16 @@ pub fn run(mut config: Config) {
310
310
}
311
311
}
312
312
313
- check_that_maps_match ( & state_group_map, & new_state_group_map) ;
313
+ check_that_maps_match ( & state_group_map, new_state_group_map) ;
314
314
315
315
// If we are given an output file, we output the changes as SQL. If the
316
316
// `transactions` argument is set we wrap each change to a state group in a
317
317
// transaction.
318
318
319
- output_sql ( & mut config, & state_group_map, & new_state_group_map) ;
319
+ output_sql ( & mut config, & state_group_map, new_state_group_map) ;
320
320
321
321
if config. graphs {
322
- graphing:: make_graphs ( & state_group_map, & new_state_group_map) ;
322
+ graphing:: make_graphs ( & state_group_map, new_state_group_map) ;
323
323
}
324
324
}
325
325
You can’t perform that action at this time.
0 commit comments