mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
[pitboss/grind] deferred session-0009 (20260520T233019Z-6958)
This commit is contained in:
parent
a6f34554db
commit
38cc0ce05f
60 changed files with 509 additions and 541 deletions
|
|
@ -791,11 +791,10 @@ fn collect_class_files(root: &Path) -> Vec<PathBuf> {
|
|||
let path = entry.path();
|
||||
if path.is_dir() {
|
||||
stack.push(path);
|
||||
} else if path.extension().map(|e| e == "class").unwrap_or(false) {
|
||||
if let Ok(rel) = path.strip_prefix(root) {
|
||||
} else if path.extension().map(|e| e == "class").unwrap_or(false)
|
||||
&& let Ok(rel) = path.strip_prefix(root) {
|
||||
out.push(rel.to_path_buf());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
out.sort();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue