# HG changeset patch # User Doug Simon # Date 1359043560 -3600 # Node ID d34f5456475f13b1ce9e82359f6a8228c92ca5b1 # Parent a200d10867f1e0ae6c8752f48a126608879f4295 applied eclipseformat diff -r a200d10867f1 -r d34f5456475f graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugValue.java --- a/graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugValue.java Thu Jan 24 17:03:46 2013 +0100 +++ b/graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugValue.java Thu Jan 24 17:06:00 2013 +0100 @@ -22,7 +22,6 @@ */ package com.oracle.graal.debug.internal; - public abstract class DebugValue implements Comparable { private String name; diff -r a200d10867f1 -r d34f5456475f graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationStatistics.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationStatistics.java Thu Jan 24 17:03:46 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationStatistics.java Thu Jan 24 17:06:00 2013 +0100 @@ -49,6 +49,7 @@ private static ConcurrentLinkedDeque list = new ConcurrentLinkedDeque<>(); private static final ThreadLocal> current = new ThreadLocal>() { + @Override protected Deque initialValue() { return new ArrayDeque<>(); @@ -72,19 +73,14 @@ return thread.getThreadAllocatedBytes(currentThread().getId()); } - @NotReported - private final long startTime; - @NotReported - private long threadAllocatedBytesStart; - @NotReported - private int startInvCount; - @NotReported - private int endInvCount; + @NotReported private final long startTime; + @NotReported private long threadAllocatedBytesStart; + @NotReported private int startInvCount; + @NotReported private int endInvCount; private int bytecodeCount; private int codeSize; - @TimeValue - private long duration; + @TimeValue private long duration; private long memoryUsed; private final boolean osr; private final String holder;