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 2017/01/17 13:05:04 UTC

cxf git commit: Fix typo in debug logs, patch from Jeansen applied, This closes #223

Repository: cxf
Updated Branches:
  refs/heads/master 9852bcd56 -> 0f6d97c0e


Fix typo in debug logs, patch from Jeansen applied, This closes #223


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

Branch: refs/heads/master
Commit: 0f6d97c0ee063b0512f14a78570df536f5d53b11
Parents: 9852bcd
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Jan 17 13:04:44 2017 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Jan 17 13:04:44 2017 +0000

----------------------------------------------------------------------
 core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/0f6d97c0/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java b/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
index 848d3bc..282eeb0 100644
--- a/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
+++ b/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
@@ -737,7 +737,7 @@ public class ClientImpl
         if (endpoint.getService().getDataBinding() instanceof InterceptorProvider) {
             InterceptorProvider p = (InterceptorProvider)endpoint.getService().getDataBinding();
             if (LOG.isLoggable(Level.FINE)) {
-                LOG.fine("Interceptors contributed by databinging: " + p.getInInterceptors());
+                LOG.fine("Interceptors contributed by databinding: " + p.getInInterceptors());
             }
             chain = inboundChainCache.get(pm.getInPhases(), i1, i2, i3, i4,
                                           p.getInInterceptors());