--- old/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/Compilation.java 2014-05-21 16:16:15.880805043 +0200 +++ new/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/Compilation.java 2014-05-21 16:16:15.682987730 +0200 @@ -49,6 +49,12 @@ this.id = id; } + void reset() { + call = new CallSite(); + lateInlineCall = new CallSite(); + phases = new ArrayList(4); + } + Phase getPhase(String s) { for (Phase p : getPhases()) { if (p.getName().equals(s)) { @@ -212,10 +218,6 @@ return phases; } - public void setPhases(ArrayList phases) { - this.setPhases(phases); - } - public String getFailureReason() { return failureReason; } @@ -240,10 +242,6 @@ return call; } - public void setCall(CallSite call) { - this.call = call; - } - public CallSite getLateInlineCall() { return lateInlineCall; }