Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 72600 invoked from network); 29 Sep 2009 17:34:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Sep 2009 17:34:32 -0000 Received: (qmail 94207 invoked by uid 500); 29 Sep 2009 17:34:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 94126 invoked by uid 500); 29 Sep 2009 17:34:32 -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 94117 invoked by uid 99); 29 Sep 2009 17:34:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Sep 2009 17:34:32 +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; Tue, 29 Sep 2009 17:34:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7DD0623888DB; Tue, 29 Sep 2009 17:34:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r820039 - /cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java Date: Tue, 29 Sep 2009 17:34:08 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090929173408.7DD0623888DB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Sep 29 17:34:08 2009 New Revision: 820039 URL: http://svn.apache.org/viewvc?rev=820039&view=rev Log: Fix compile error Modified: cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java Modified: cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java?rev=820039&r1=820038&r2=820039&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java (original) +++ cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java Tue Sep 29 17:34:08 2009 @@ -56,7 +56,7 @@ String p) throws IOException { // would add the default port to the address - super(b, ei, false); + super(b, null, ei, false); factory = fact; path = p; }