This commit is contained in:
Simon Gardling
2021-04-01 10:34:13 -04:00
parent 41ba5f248c
commit b7bb810065
2 changed files with 7 additions and 7 deletions

View File

@@ -174,7 +174,7 @@ impl Model {
fn strip_grid_data(grids: Vec<Grid>) -> Vec<ThinGridData> {
return grids.iter().map(|grid| {
return ThinGridData::from_grid(grid);
ThinGridData::from_grid(grid)
}).collect();
}