This commit is contained in:
Kieran Moy
2025-06-19 17:19:09 +08:00
committed by GitHub
parent 60fae5cc88
commit bc41499d1c
3 changed files with 76 additions and 76 deletions

View File

@@ -209,7 +209,7 @@ public final class CrashReportAnalyzer {
}
}
public static Set<Result> anaylze(String log) {
public static Set<Result> analyze(String log) {
Set<Result> results = new HashSet<>();
for (Rule rule : Rule.values()) {
Matcher matcher = rule.pattern.matcher(log);