Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
import java.util.logging.Level;
import java.util.logging.Logger;

abstract class UnifiedGCLogParser extends GCLogParser {
public abstract class UnifiedGCLogParser extends GCLogParser {

private static final Logger LOGGER = Logger.getLogger(UnifiedGCLogParser.class.getName());
private static final boolean DEBUG = Boolean.getBoolean("microsoft.debug");

public UnifiedGCLogParser() {}

void advanceClock(String record) {
protected void advanceClock(String record) {
try {
DateTimeStamp now = new Decorators(record).getDateTimeStamp();
super.advanceClock(now);
Expand Down