Skip to content

Commit ac4f08b

Browse files
committed
Minor changes for styles, etc
1 parent 3ecd294 commit ac4f08b

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

src/main/java/com/tagtraum/perf/gcviewer/imp/DataReaderUnifiedJvmLogging.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ private boolean isLogOnlyLine(String line) {
506506
}
507507

508508
private boolean lineContainsParseableEvent(ParseContext context) {
509-
if ((isCandidateForParseableEvent(context.getLine()) && !isExcludedLine(context.getLine()))) {
509+
if (isCandidateForParseableEvent(context.getLine()) && !isExcludedLine(context.getLine())) {
510510
if (isLogOnlyLine(context.getLine())) {
511511
String tail = context.getLine().substring(context.getLine().lastIndexOf("]")+1);
512512
enrichContext(context, tail);

src/main/java/com/tagtraum/perf/gcviewer/model/AbstractGCEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public abstract class AbstractGCEvent<T extends AbstractGCEvent<T>> implements S
3636
protected List<T> details;
3737
private double pause;
3838
private int number = -1;
39-
protected List<AbstractGCEvent<?>> phases;
39+
private List<AbstractGCEvent<?>> phases;
4040

4141
public Iterator<T> details() {
4242
if (details == null) return Collections.emptyIterator();

src/main/java/com/tagtraum/perf/gcviewer/model/GCEventUJL.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.tagtraum.perf.gcviewer.model;
22

3-
import java.util.ArrayList;
4-
53
/**
64
* @author <a href="mailto:[email protected]">Joerg Wuethrich</a>
75
* <p>created on: 03.01.2018</p>

src/main/java/com/tagtraum/perf/gcviewer/model/GCModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class GCModel implements Serializable {
5353

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

0 commit comments

Comments
 (0)