You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2014/07/07 11:52:54 UTC

git commit: [CXF-5845] Cleaning up the old configuration in HTTPTransportActivator, patch from Lukasz Dywicki applied

Repository: cxf
Updated Branches:
  refs/heads/2.7.x-fixes 09c619e1f -> 60859f042


[CXF-5845] Cleaning up the old configuration in HTTPTransportActivator, patch from Lukasz Dywicki applied


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/60859f04
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/60859f04
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/60859f04

Branch: refs/heads/2.7.x-fixes
Commit: 60859f04223d5236f5d46d921710ce281cd7604d
Parents: 09c619e
Author: Lukasz Dywicki <lu...@code-house.org>
Authored: Thu Jul 3 18:06:01 2014 +0200
Committer: Sergey Beryozkin <sb...@talend.com>
Committed: Mon Jul 7 10:52:32 2014 +0100

----------------------------------------------------------------------
 .../org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/60859f04/rt/transports/http/src/main/java/org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java
----------------------------------------------------------------------
diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java
index 93c2346..caa8258 100644
--- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java
+++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/osgi/HTTPTransportActivator.java
@@ -159,6 +159,8 @@ public class HTTPTransportActivator
         if (pid == null) {
             return;
         }
+        deleted(pid);
+
         String url = (String)properties.get("url");
         String name = (String)properties.get("name");
         Matcher matcher = url == null ? null : Pattern.compile(url).matcher("");