validator: remove placeholder comments
This commit is contained in:
@ -468,7 +468,6 @@ impl<'a> std::fmt::Display for MapCheck<'a>{
|
|||||||
writeln!(f,"")?;
|
writeln!(f,"")?;
|
||||||
}
|
}
|
||||||
if let SetDifferenceCheck(Err(context))=&self.mode_finish_counts{
|
if let SetDifferenceCheck(Err(context))=&self.mode_finish_counts{
|
||||||
// perhaps there are extra end zones (context.extra)
|
|
||||||
if !context.extra.is_empty(){
|
if !context.extra.is_empty(){
|
||||||
write!(f,"Extra finish zones with no matching start zone: ")?;
|
write!(f,"Extra finish zones with no matching start zone: ")?;
|
||||||
write_comma_separated(f,context.extra.iter(),|f,(mode_id,_count)|
|
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,"")?;
|
writeln!(f,"")?;
|
||||||
}
|
}
|
||||||
// perhaps there are missing end zones (context.missing)
|
|
||||||
if !context.missing.is_empty(){
|
if !context.missing.is_empty(){
|
||||||
write!(f,"Missing finish zones: ")?;
|
write!(f,"Missing finish zones: ")?;
|
||||||
write_comma_separated(f,context.missing.iter(),|f,mode_id|
|
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{
|
if let SetDifferenceCheck(Err(context))=&self.mode_anticheat_counts{
|
||||||
// perhaps there are extra end zones (context.extra)
|
|
||||||
if !context.extra.is_empty(){
|
if !context.extra.is_empty(){
|
||||||
write!(f,"Extra anticheat zones with no matching start zone: ")?;
|
write!(f,"Extra anticheat zones with no matching start zone: ")?;
|
||||||
write_comma_separated(f,context.extra.iter(),|f,(mode_id,_count)|
|
write_comma_separated(f,context.extra.iter(),|f,(mode_id,_count)|
|
||||||
|
Reference in New Issue
Block a user