From: Pavel V. <va...@us...> - 2001-12-03 10:13:24
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv24858 Modified Files: ThreadData.java Log Message: addChild() fix Index: ThreadData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ThreadData.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** ThreadData.java 2001/12/02 15:54:40 1.6 --- ThreadData.java 2001/12/03 10:13:19 1.7 *************** *** 162,166 **** * @param child child of this thread. */ ! void addChild(AllocThreadClassData child) { children.add(child); } --- 162,166 ---- * @param child child of this thread. */ ! void addChild(ThreadData child) { children.add(child); } *************** *** 286,289 **** --- 286,292 ---- /* * $Log$ + * Revision 1.7 2001/12/03 10:13:19 vachis + * addChild() fix + * * Revision 1.6 2001/12/02 15:54:40 petrul * changed constructor code |