From: Pavel V. <va...@us...> - 2002-02-16 16:22:20
|
Update of /cvsroot/javaprofiler/test/snapshot In directory usw-pr-cvs1:/tmp/cvs-serv18494 Modified Files: DebugOutput.java Log Message: code refacorization Class.. to Type... (forgotten methods) Index: DebugOutput.java =================================================================== RCS file: /cvsroot/javaprofiler/test/snapshot/DebugOutput.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** DebugOutput.java 15 Feb 2002 22:38:09 -0000 1.3 --- DebugOutput.java 16 Feb 2002 16:22:18 -0000 1.4 *************** *** 80,84 **** AllocTypeData o = (AllocTypeData) it.next(); System.out.println("OBJECT TYPE:"); ! ClassData c = o.getClassData(); if (c != null) System.out.println("CLASS = " + c.getName()); System.out.print("IS_ARRAY = "); --- 80,84 ---- AllocTypeData o = (AllocTypeData) it.next(); System.out.println("OBJECT TYPE:"); ! ClassData c = o.getClazz(); if (c != null) System.out.println("CLASS = " + c.getName()); System.out.print("IS_ARRAY = "); *************** *** 213,217 **** while (it.hasNext()) { ThreadData th = (ThreadData) it.next(); ! Iterator itA = th.getClasses().values().iterator(); while (itA.hasNext()) { AllocThreadTypeData a = (AllocThreadTypeData) itA.next(); --- 213,217 ---- while (it.hasNext()) { ThreadData th = (ThreadData) it.next(); ! Iterator itA = th.getTypes().values().iterator(); while (itA.hasNext()) { AllocThreadTypeData a = (AllocThreadTypeData) itA.next(); *************** *** 296,299 **** --- 296,302 ---- /* * $Log$ + * Revision 1.4 2002/02/16 16:22:18 vachis + * code refacorization Class.. to Type... (forgotten methods) + * * Revision 1.3 2002/02/15 22:38:09 vachis * code refactorization Class..Data renamed to Type..Data |