Skip to content

Commit 1870327

Browse files
committed
comment moved to correct place
1 parent 97cc311 commit 1870327

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

visualvm/libs.profiler/lib.profiler/src/org/graalvm/visualvm/lib/jfluid/server/ProfilerInterface.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,10 +582,9 @@ public int handleFirstTimeVMObjectAlloc(String className, int definingClassLoade
582582
}
583583

584584
public void handleEventBufferDump(byte[] eventBuffer, int startPos, int curPtrPos) {
585-
serialClientOperationsLock.beginTrans(true);
586-
587-
try { // So that this event does not interfere with class
588-
// loads / method invocations
585+
serialClientOperationsLock.beginTrans(true); // So that this event does not interfere with class
586+
// loads / method invocations
587+
try {
589588
clientDataProcStartTime = Timers.getCurrentTimeInCounts();
590589
evBufManager.eventBufferDumpHook(eventBuffer, startPos, curPtrPos);
591590
clientDataProcTime += (Timers.getCurrentTimeInCounts() - clientDataProcStartTime);

0 commit comments

Comments
 (0)