Skip to content

Commit

Permalink
Minor changes for styles, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
yanqilee committed Mar 4, 2019
1 parent 3ecd294 commit ac4f08b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ private boolean isLogOnlyLine(String line) {
}

private boolean lineContainsParseableEvent(ParseContext context) {
if ((isCandidateForParseableEvent(context.getLine()) && !isExcludedLine(context.getLine()))) {
if (isCandidateForParseableEvent(context.getLine()) && !isExcludedLine(context.getLine())) {
if (isLogOnlyLine(context.getLine())) {
String tail = context.getLine().substring(context.getLine().lastIndexOf("]")+1);
enrichContext(context, tail);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class AbstractGCEvent<T extends AbstractGCEvent<T>> implements S
protected List<T> details;
private double pause;
private int number = -1;
protected List<AbstractGCEvent<?>> phases;
private List<AbstractGCEvent<?>> phases;

public Iterator<T> details() {
if (details == null) return Collections.emptyIterator();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.tagtraum.perf.gcviewer.model;

import java.util.ArrayList;

/**
* @author <a href="mailto:[email protected]">Joerg Wuethrich</a>
* <p>created on: 03.01.2018</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class GCModel implements Serializable {

private Map<String, DoubleData> fullGcEventPauses; // pause information about all full gc events for detailed output
private Map<String, DoubleData> gcEventPauses; // pause information about all stw events for detailed output
private Map<String, DoubleData> gcEventPhases;
private Map<String, DoubleData> gcEventPhases; // pause information about all phases for garbage collection events
private Map<String, DoubleData> concurrentGcEventPauses; // pause information about all concurrent events
private Map<String, DoubleData> vmOperationEventPauses; // pause information about vm operations ("application stopped")

Expand Down

0 comments on commit ac4f08b

Please sign in to comment.