[Proxool-cvs] proxool/src/java/org/logicalcobwebs/proxool ProxoolDataSource.java,1.3,1.4
UNMAINTAINED!
Brought to you by:
billhorsman
From: <ch...@us...> - 2004-08-19 12:28:39
|
Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25174/src/java/org/logicalcobwebs/proxool Modified Files: ProxoolDataSource.java Log Message: Removed factory type test. Index: ProxoolDataSource.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxoolDataSource.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ProxoolDataSource.java 18 Mar 2004 17:16:58 -0000 1.3 --- ProxoolDataSource.java 19 Aug 2004 12:28:28 -0000 1.4 *************** *** 141,148 **** --- 141,150 ---- } Reference reference = (Reference) refObject; + /* Removed because JNDI implementations can not be trusted to implement reference.getFactoryClassName() correctly. // check if this is relevant for us if (!ProxoolDataSource.class.getName().equals(reference.getFactoryClassName())) { return null; } + */ // check if we've allready parsed the properties. if (!ConnectionPoolManager.getInstance().isPoolExists(reference.get(ProxoolConstants.ALIAS_PROPERTY).toString())) { *************** *** 644,647 **** --- 646,652 ---- Revision history: $Log$ + Revision 1.4 2004/08/19 12:28:28 chr32 + Removed factory type test. + Revision 1.3 2004/03/18 17:16:58 chr32 Added a timy bit of doc. |