Restructure command line args

This commit is contained in:
Joscha 2021-12-12 22:00:24 +00:00
parent cdf28edec6
commit 494f1976c6
2 changed files with 31 additions and 17 deletions

View file

@ -175,12 +175,6 @@ impl Files {
Ok(())
}
pub fn mark_main_dirty(&mut self) {
if let Some(file) = self.files.get_mut(0) {
file.dirty = true;
}
}
pub fn mark_all_dirty(&mut self) {
for file in self.files.iter_mut() {
file.dirty = true;