Skip to content

Commit

Permalink
Locale PL
Browse files Browse the repository at this point in the history
  • Loading branch information
Ślusarski Krzysztof committed Jun 29, 2021
1 parent 025428d commit 1aece8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void addPhaseConcurrentSTW(GCLogFile gcLogFile, Long sequenceId, String
String phaseWithTime = line.replaceFirst(".*GC\\(\\d+\\)", "").trim();
int indexOfSpace = phaseWithTime.lastIndexOf(" ");
String phase = phaseWithTime.substring(0, indexOfSpace);
String time = phaseWithTime.substring(indexOfSpace + 1).replaceAll("ms", "");
String time = phaseWithTime.substring(indexOfSpace + 1).replaceAll("ms", "").replaceAll(",", ".");
gcLogFile.addSubPhaseTime(sequenceId, phase, new BigDecimal(time));
}

Expand Down

0 comments on commit 1aece8a

Please sign in to comment.