1
0

update validators (#678)

This commit is contained in:
Geometrically
2023-08-08 14:27:38 -07:00
committed by GitHub
parent 5676a13290
commit a5195920fa
2 changed files with 5 additions and 28 deletions

View File

@@ -35,15 +35,6 @@ impl super::Validator for QuiltValidator {
));
}
if !archive
.file_names()
.any(|name| name.ends_with("refmap.json") || name.ends_with(".class"))
{
return Ok(ValidationResult::Warning(
"Quilt mod file is a source file!",
));
}
Ok(ValidationResult::Pass)
}
}