Remove false assertion

This commit is contained in:
Bojan Serafimov
2023-01-12 18:52:15 -05:00
parent 87c3e55449
commit 2fcbb46338

View File

@@ -321,7 +321,7 @@ impl<Value: Clone> BufferedHistoricLayerCoverage<Value> {
let existing = self.layers.insert(rect.clone(), l.clone());
if existing.is_some() {
// TODO this happened once. Investigate.
panic!("can't overwrite layer");
// panic!("can't overwrite layer");
}
}
None => {