You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/05/24 19:30:46 UTC

svn commit: r1127162 - in /cxf/branches/2.3.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java

Author: dkulp
Date: Tue May 24 17:30:46 2011
New Revision: 1127162

URL: http://svn.apache.org/viewvc?rev=1127162&view=rev
Log:
Merged revisions 1103806 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1103806 | dkulp | 2011-05-16 13:24:13 -0400 (Mon, 16 May 2011) | 1 line
  
  Fix javadoc typos
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java?rev=1127162&r1=1127161&r2=1127162&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java (original)
+++ cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java Tue May 24 17:30:46 2011
@@ -46,7 +46,7 @@ public class PooledFactory implements Fa
         this(new PerRequestFactory(svcClass), max, false);
     }
     /**
-     * Pool of instances contructed from the given factory
+     * Pool of instances constructed from the given factory
      * @param factory
      * @param max the absolute maximum number to create and pool
      */
@@ -55,7 +55,7 @@ public class PooledFactory implements Fa
     }
 
     /**
-     * Pool of instances contructed from the given factory
+     * Pool of instances constructed from the given factory
      * @param factory
      * @param max the absolute maximum number to create and pool
      * @param createMore If the pool is empty, but max objects have already 
@@ -76,7 +76,7 @@ public class PooledFactory implements Fa
     
     /**
      * Pool constructed from the give Collection of objects. 
-     * @param objs The collection of objects to pre-polulate the pool
+     * @param objs The collection of objects to pre-populate the pool
      */
     public PooledFactory(Collection<Object> objs) {
         pool = new ArrayBlockingQueue<Object>(objs.size(), true);