Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun
In directory usw-pr-cvs1:/tmp/cvs-serv2589
Modified Files:
CommunSocket.java
Log Message:
initialize() should return false when connection cannot be established.
Index: CommunSocket.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSocket.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CommunSocket.java 2001/11/21 22:05:55 1.2
--- CommunSocket.java 2002/01/27 22:56:11 1.3
***************
*** 122,126 ****
catch( Exception e) {
! return _failed = true;
}
--- 122,127 ----
catch( Exception e) {
! _failed = true;
! return false;
}
|