bloritsch 01/03/07 11:29:06
Modified: src/org/apache/cocoon/util Tag: xml-cocoon2
ComponentPool.java
Log:
I am satisfied that pooled components are being returned. All the log
statements
for get and put obscure the real debug information.
Revision Changes Path
No revision
No revision
1.1.2.15 +0 -2
xml-cocoon/src/org/apache/cocoon/util/Attic/ComponentPool.java
Index: ComponentPool.java
===================================================================
RCS file:
/home/cvs/xml-cocoon/src/org/apache/cocoon/util/Attic/ComponentPool.java,v
retrieving revision 1.1.2.14
retrieving revision 1.1.2.15
diff -u -r1.1.2.14 -r1.1.2.15
--- ComponentPool.java 2001/03/06 21:55:41 1.1.2.14
+++ ComponentPool.java 2001/03/07 19:29:02 1.1.2.15
@@ -157,7 +157,6 @@
public Poolable get()
throws Exception
{
- log.debug("Component Pool - getting Resource:" +
this.m_factory.getCreatedClass().getName());
return get(DEFAULT_WAIT_TIME);
}
@@ -234,7 +233,6 @@
*/
public void put(Poolable resource)
{
- log.debug("Component Pool - returning Resource:" +
this.m_factory.getCreatedClass().getName());
int pos = -1;
synchronized(this) {