This commit is contained in:
David Grieve 2023-06-14 09:45:16 -04:00
Родитель 8a7e61961c
Коммит 0e8f2c83cf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 21E2B152A55C4031
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -199,7 +199,8 @@ public class UnifiedG1GCParser extends UnifiedGCLogParser implements UnifiedG1GC
.findAny()
.ifPresentOrElse(
tuple -> {
setForwardReference(gcid, line.substring(0, end));
// Typically, "end" will be greater than zero, but not always.
setForwardReference(gcid, end > 0 ? line.substring(0, end) : line);
applyRule(tuple.getKey(), tuple.getValue(), line);
},
() -> log(line)