[jboss-cvs] JBoss Profiler SVN: r464 - branches/JBossProfiler2/src/main/org/jboss/profiler/client.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Aug 16 04:57:08 EDT 2008


Author: jesper.pedersen
Date: 2008-08-16 04:57:08 -0400 (Sat, 16 Aug 2008)
New Revision: 464

Modified:
   branches/JBossProfiler2/src/main/org/jboss/profiler/client/SnapshotUtil.java
Log:
Wait time isnt recorded atm

Modified: branches/JBossProfiler2/src/main/org/jboss/profiler/client/SnapshotUtil.java
===================================================================
--- branches/JBossProfiler2/src/main/org/jboss/profiler/client/SnapshotUtil.java	2008-08-16 08:18:42 UTC (rev 463)
+++ branches/JBossProfiler2/src/main/org/jboss/profiler/client/SnapshotUtil.java	2008-08-16 08:57:08 UTC (rev 464)
@@ -632,7 +632,7 @@
     DecimalFormat df = new DecimalFormat("#0.00");
     
     bw.write("Total time: " + df.format(tci.getTotalTime()) + " ms" + NEW_LINE);
-    bw.write(" Wait time: " + df.format(tci.getWaitTime()) + " ms" + NEW_LINE);
+    //bw.write(" Wait time: " + df.format(tci.getWaitTime()) + " ms" + NEW_LINE);
 
     if (allocs != null && allocs.size() > 0) {
       long alloc = 0;




More information about the jboss-cvs-commits mailing list