Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 26055 invoked from network); 16 Sep 2010 19:58:01 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Sep 2010 19:58:01 -0000 Received: (qmail 96466 invoked by uid 500); 16 Sep 2010 19:58:01 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 96348 invoked by uid 500); 16 Sep 2010 19:58:01 -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 96341 invoked by uid 99); 16 Sep 2010 19:58:01 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 19:58:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 16 Sep 2010 19:57:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BAD662388A40; Thu, 16 Sep 2010 19:57:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r997900 - /cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java Date: Thu, 16 Sep 2010 19:57:22 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100916195722.BAD662388A40@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Thu Sep 16 19:57:22 2010 New Revision: 997900 URL: http://svn.apache.org/viewvc?rev=997900&view=rev Log: Merged revisions 997892 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r997892 | dkulp | 2010-09-16 15:45:52 -0400 (Thu, 16 Sep 2010) | 2 lines [CXF-2995] Patch use of cxf with lazy inits. Patch from Adam Lewandowski applied ........ Modified: cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java Modified: cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java?rev=997900&r1=997899&r2=997900&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java (original) +++ cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java Thu Sep 16 19:57:22 2010 @@ -90,7 +90,7 @@ public class BusDefinitionParserTest ext String cfgFile = "org/apache/cxf/bus/spring/lazyInitBus.xml"; Bus bus = new SpringBusFactory().createBus(cfgFile, true); - List> in = bus.getInInterceptors(); + List in = bus.getInInterceptors(); boolean found = false; for (Interceptor i : in) { if (i instanceof LoggingInInterceptor) {