validator: remove placeholder comments

This commit is contained in:
Quaternions 2025-04-11 23:42:43 -07:00
parent 9331f37d70
commit ddef30984f
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131

@ -468,7 +468,6 @@ impl<'a> std::fmt::Display for MapCheck<'a>{
writeln!(f,"")?;
}
if let SetDifferenceCheck(Err(context))=&self.mode_finish_counts{
// perhaps there are extra end zones (context.extra)
if !context.extra.is_empty(){
write!(f,"Extra finish zones with no matching start zone: ")?;
write_comma_separated(f,context.extra.iter(),|f,(mode_id,_count)|
@ -476,7 +475,6 @@ impl<'a> std::fmt::Display for MapCheck<'a>{
)?;
writeln!(f,"")?;
}
// perhaps there are missing end zones (context.missing)
if !context.missing.is_empty(){
write!(f,"Missing finish zones: ")?;
write_comma_separated(f,context.missing.iter(),|f,mode_id|
@ -486,7 +484,6 @@ impl<'a> std::fmt::Display for MapCheck<'a>{
}
}
if let SetDifferenceCheck(Err(context))=&self.mode_anticheat_counts{
// perhaps there are extra end zones (context.extra)
if !context.extra.is_empty(){
write!(f,"Extra anticheat zones with no matching start zone: ")?;
write_comma_separated(f,context.extra.iter(),|f,(mode_id,_count)|