From: Lukas P. <pe...@us...> - 2002-08-28 18:03:28
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes In directory usw-pr-cvs1:/tmp/cvs-serv4092 Modified Files: SessionsNode.java Log Message: temporary change, shows two nodes per one snapshot Index: SessionsNode.java =================================================================== RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes/SessionsNode.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** SessionsNode.java 16 May 2002 11:59:44 -0000 1.4 --- SessionsNode.java 28 Aug 2002 18:03:26 -0000 1.5 *************** *** 81,85 **** } else if (key instanceof Snapshot) { // key is Snapshot ! return new Node[]{new SnapshotNode((Snapshot)key)}; } else { // key is ConListener --- 81,86 ---- } else if (key instanceof Snapshot) { // key is Snapshot ! return new Node[]{new SnapshotNode2((Snapshot)key), ! new SnapshotNode((Snapshot)key)}; } else { // key is ConListener *************** *** 102,105 **** --- 103,109 ---- /* * $Log$ + * Revision 1.5 2002/08/28 18:03:26 petrul + * temporary change, shows two nodes per one snapshot + * * Revision 1.4 2002/05/16 11:59:44 stolis * Listener nodes added under sessions node. |