# HG changeset patch # User Doug Simon # Date 1440411844 -7200 # Node ID d656166c77c79b0527166bb904ac1b3fce5e0e9c # Parent 4b4d7e7706eb6b78225a3be1831922ec974b8dd6 fixed eclipseformat issue diff -r 4b4d7e7706eb -r d656166c77c7 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Mon Aug 24 11:24:41 2015 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Mon Aug 24 12:24:04 2015 +0200 @@ -250,8 +250,7 @@ long timeUnitsPerSecond = TimeUnit.NANOSECONDS.convert(1, TimeUnit.SECONDS); CompilerToVM c2vm = jvmciRuntime.getCompilerToVM(); HotSpotResolvedJavaMethodImpl methodImpl = (HotSpotResolvedJavaMethodImpl) method; - c2vm.notifyCompilationStatistics(id, methodImpl, entryBCI != Compiler.INVOCATION_ENTRY_BCI, compiledBytecodes, compilationTime, timeUnitsPerSecond, - installedCode); + c2vm.notifyCompilationStatistics(id, methodImpl, entryBCI != Compiler.INVOCATION_ENTRY_BCI, compiledBytecodes, compilationTime, timeUnitsPerSecond, installedCode); } } }