Skip to content

Commit

Permalink
unused var error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmshv committed Feb 24, 2024
1 parent 1eadd9a commit eabaef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/src/sphere/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl Csv {
};
});
}
_ => {}
Err(_) => {}
}
Ok(schema)
}
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/sphere/geojson.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Geojson {
_ => {}
};
}
Err(err) => {}
Err(_) => {}
};
Ok(schema)
}
Expand Down

0 comments on commit eabaef3

Please sign in to comment.