unmark() need not be public.

This commit is contained in:
Michael Neumann 2016-02-27 20:45:46 +01:00
parent a3a79cc599
commit 7feb1fcdaf

View File

@ -32,7 +32,7 @@ impl MarkMatrix {
} }
} }
pub fn unmark(&mut self, pos: (usize, usize)) { fn unmark(&mut self, pos: (usize, usize)) {
self.marks[pos] = Mark::None; self.marks[pos] = Mark::None;
} }