Reverting erroneously committed change
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/394dadf8 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/394dadf8 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/394dadf8 Branch: refs/heads/3.0.x-fixes Commit: 394dadf89f94efb3e3684b2692f70b073549de04 Parents: 9e306ab Author: Alessio Soldano <[email protected]> Authored: Wed May 20 00:46:06 2015 +0200 Committer: Alessio Soldano <[email protected]> Committed: Wed May 20 09:49:13 2015 +0200 ---------------------------------------------------------------------- .../apache/cxf/binding/soap/interceptor/RPCInInterceptor.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/394dadf8/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/RPCInInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/RPCInInterceptor.java b/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/RPCInInterceptor.java index 7bfc409..cad50af 100644 --- a/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/RPCInInterceptor.java +++ b/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/RPCInInterceptor.java @@ -23,7 +23,6 @@ import java.net.URI; import java.net.URISyntaxException; import java.util.Iterator; import java.util.List; -import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.namespace.QName; @@ -89,9 +88,7 @@ public class RPCInInterceptor extends AbstractInDatabindingInterceptor { } public void handleMessage(Message message) { if (isGET(message)) { - if (LOG.isLoggable(Level.FINE)) { - LOG.fine("RPCInInterceptor skipped in HTTP GET method"); - } + LOG.fine("RPCInInterceptor skipped in HTTP GET method"); return; } DepthXMLStreamReader xmlReader = getXMLStreamReader(message);
