Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28930/src/java/org/logicalcobwebs/proxool
Modified Files:
ProxoolFacade.java
Log Message:
Made removeStateListener() static like the other removeFooListener() methods. Credit to gaz...@ho... (bug 1716868).
Index: ProxoolFacade.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxoolFacade.java,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** ProxoolFacade.java 25 Jan 2007 23:38:24 -0000 1.86
--- ProxoolFacade.java 15 May 2007 23:00:22 -0000 1.87
***************
*** 449,453 ****
* @return wether the listnener was found and removed or not.
*/
! public boolean removeStateListener(String alias, StateListenerIF stateListener) throws ProxoolException {
ConnectionPool cp = ConnectionPoolManager.getInstance().getConnectionPool(alias);
return cp.removeStateListener(stateListener);
--- 449,453 ----
* @return wether the listnener was found and removed or not.
*/
! public static boolean removeStateListener(String alias, StateListenerIF stateListener) throws ProxoolException {
ConnectionPool cp = ConnectionPoolManager.getInstance().getConnectionPool(alias);
return cp.removeStateListener(stateListener);
***************
*** 855,858 ****
--- 855,861 ----
Revision history:
$Log$
+ Revision 1.87 2007/05/15 23:00:22 billhorsman
+ Made removeStateListener() static like the other removeFooListener() methods. Credit to gaz...@ho... (bug 1716868).
+
Revision 1.86 2007/01/25 23:38:24 billhorsman
Scrapped onAboutToDie and altered onDeath signature instead. Now includes reasonCode (see ConnectionListenerIF)
|