Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data
In directory usw-pr-cvs1:/tmp/cvs-serv23488
Modified Files:
MethodData.java
Log Message:
fixed toString method
Index: MethodData.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/MethodData.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** MethodData.java 24 Jul 2002 22:29:22 -0000 1.20
--- MethodData.java 20 Aug 2002 19:30:01 -0000 1.21
***************
*** 404,408 ****
public String toString() {
! return getClass() + "." + getName();
}
--- 404,408 ----
public String toString() {
! return getParentClass() + "." + getName();
}
***************
*** 418,421 ****
--- 418,424 ----
/*
* $Log$
+ * Revision 1.21 2002/08/20 19:30:01 petrul
+ * fixed toString method
+ *
* Revision 1.20 2002/07/24 22:29:22 vachis
* implements new interfaces for getting roots and info
|