Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A9D126435 for ; Mon, 16 May 2011 17:24:34 +0000 (UTC) Received: (qmail 66269 invoked by uid 500); 16 May 2011 17:24:34 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 66219 invoked by uid 500); 16 May 2011 17:24:34 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 66212 invoked by uid 99); 16 May 2011 17:24:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 May 2011 17:24:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 May 2011 17:24:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7DB8B2388A29; Mon, 16 May 2011 17:24:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1103806 - /cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java Date: Mon, 16 May 2011 17:24:13 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110516172413.7DB8B2388A29@eris.apache.org> Author: dkulp Date: Mon May 16 17:24:13 2011 New Revision: 1103806 URL: http://svn.apache.org/viewvc?rev=1103806&view=rev Log: Fix javadoc typos Modified: cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java Modified: cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java?rev=1103806&r1=1103805&r2=1103806&view=diff ============================================================================== --- cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java (original) +++ cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java Mon May 16 17:24:13 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 objs) { pool = new ArrayBlockingQueue(objs.size(), true);