From: Pavel V. <va...@us...> - 2001-12-05 00:39:31
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv20929 Modified Files: ThreadData.java Log Message: MonMethods fix Index: ThreadData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ThreadData.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** ThreadData.java 2001/12/03 10:13:19 1.7 --- ThreadData.java 2001/12/05 00:39:26 1.8 *************** *** 80,84 **** this.name=name; this.group=group; ! this.parent=parent; this.active=active; children=new LinkedList(); --- 80,84 ---- this.name=name; this.group=group; ! this.parent=parent; //warning probably may be null this.active=active; children=new LinkedList(); *************** *** 86,89 **** --- 86,90 ---- allocMethods=new HashMap(); CPUMethods=new HashMap(); + MonMethods=new HashMap(); } *************** *** 286,289 **** --- 287,293 ---- /* * $Log$ + * Revision 1.8 2001/12/05 00:39:26 vachis + * MonMethods fix + * * Revision 1.7 2001/12/03 10:13:19 vachis * addChild() fix |