fix: type witness syntax for Comparator.comparingInt
Build & Deploy / build-and-deploy (push) Successful in 41s

This commit is contained in:
Hermes Agent
2026-06-11 12:18:08 +02:00
parent 6a18020c9f
commit dfc0589887
@@ -106,7 +106,7 @@ public class ExecutableDetector {
if (candidates.isEmpty()) return null;
candidates.sort(Comparator
.<Candidate, Integer>comparingInt(c -> {
.<Candidate>comparingInt(c -> {
String n = c.path().toLowerCase();
return n.endsWith(".bat") ? 1 : 0; // prefer .exe/.com over .bat
})