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 2009/09/29 19:34:08 UTC

svn commit: r820039 - /cxf/branches/2.2.x-fixes/rt/transports/http-osgi/src/main/java/org/apache/cxf/transport/http_osgi/OsgiDestination.java

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;
     }