Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8A9DD200C7B for ; Sat, 20 May 2017 10:23:45 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 892DE160BBC; Sat, 20 May 2017 08:23:45 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A74CB160BAD for ; Sat, 20 May 2017 10:23:44 +0200 (CEST) Received: (qmail 552 invoked by uid 500); 20 May 2017 08:23:43 -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 543 invoked by uid 99); 20 May 2017 08:23:42 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 May 2017 08:23:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B3014DFB01; Sat, 20 May 2017 08:23:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: deki@apache.org To: commits@cxf.apache.org Message-Id: <87392efb5c69477686a83877ecfce49c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: fixed typo in log message and invalid javadocs Date: Sat, 20 May 2017 08:23:42 +0000 (UTC) archived-at: Sat, 20 May 2017 08:23:45 -0000 Repository: cxf Updated Branches: refs/heads/master d0915da31 -> ff839064e fixed typo in log message and invalid javadocs Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/ff839064 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/ff839064 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/ff839064 Branch: refs/heads/master Commit: ff839064e8904634eaab8edee44c537c075d94cd Parents: d0915da Author: Dennis Kieselhorst Authored: Sat May 20 10:23:20 2017 +0200 Committer: Dennis Kieselhorst Committed: Sat May 20 10:23:20 2017 +0200 ---------------------------------------------------------------------- .../cxf/staxutils/StreamWriterContentHandler.java | 4 ++-- .../cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java | 4 ++-- .../cxf/transport/http/AbstractHTTPDestination.java | 3 ++- .../org/apache/cxf/transport/http/HTTPConduit.java | 13 ++++--------- .../org/apache/cxf/ws/policy/PolicyEngineImpl.java | 2 +- .../org/apache/cxf/test/AbstractCXFSpringTest.java | 1 - 6 files changed, 11 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/core/src/main/java/org/apache/cxf/staxutils/StreamWriterContentHandler.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/staxutils/StreamWriterContentHandler.java b/core/src/main/java/org/apache/cxf/staxutils/StreamWriterContentHandler.java index 667d4d2..be43431 100644 --- a/core/src/main/java/org/apache/cxf/staxutils/StreamWriterContentHandler.java +++ b/core/src/main/java/org/apache/cxf/staxutils/StreamWriterContentHandler.java @@ -174,9 +174,9 @@ public class StreamWriterContentHandler implements ContentHandler, LexicalHandle /** * Method getPrefix. - * @param namespaceURI * - * @param qname + * @param ns + * @param namespaceURI * @return Returns String. */ private String getPrefix(String ns, String namespaceURI) { http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java ---------------------------------------------------------------------- diff --git a/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java b/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java index 618f462..f722d77 100644 --- a/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java +++ b/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WSDL2JavaMojo.java @@ -158,7 +158,7 @@ public class WSDL2JavaMojo extends AbstractCodegenMoho { * Merge WsdlOptions that point to the same file by adding the extraargs to the first option and deleting * the second from the options list * - * @param options + * @param effectiveWsdlOptions */ protected void mergeOptions(List effectiveWsdlOptions) { @@ -206,7 +206,7 @@ public class WSDL2JavaMojo extends AbstractCodegenMoho { /** * Determine if code should be generated from the given wsdl * - * @param wsdlOption + * @param genericWsdlOption * @param doneFile * @param wsdlURI * @return http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java index 6830231..26e4c0a 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java @@ -132,8 +132,9 @@ public abstract class AbstractHTTPDestination * Constructor * * @param b the associated Bus - * @param ci the associated conduit initiator + * @param registry the destination registry * @param ei the endpoint info of the destination + * @param path the path * @param dp true for adding the default port if it is missing * @throws IOException */ http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java index a6585ff..bbead08 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java @@ -291,7 +291,7 @@ public abstract class HTTPConduit * Constructor * * @param b the associated Bus. - * @param endpoint the endpoint info of the initiator. + * @param ei the endpoint info of the initiator. * @param t the endpoint reference of the target. * @throws IOException */ @@ -526,7 +526,7 @@ public abstract class HTTPConduit needToCacheRequest = true; isChunking = false; LOG.log(Level.FINE, - "Auth Supplier, but no Premeptive User Pass or Digest auth (nonce may be stale)" + "Auth Supplier, but no Preemptive User Pass or Digest auth (nonce may be stale)" + " We must cache request."); } if (csPolicy.isAutoRedirect()) { @@ -786,7 +786,7 @@ public abstract class HTTPConduit * type? * * @param message - * @param headers + * @param currentURI */ protected void setHeadersByAuthorizationPolicy( Message message, @@ -1499,11 +1499,7 @@ public abstract class HTTPConduit /** * This method performs a retransmit for authorization information. * - * @param connection The currently active connection. - * @param message The outbound message. - * @param cachedStream The cached request. - * @return A new connection if retransmitted. If not retransmitted - * then this method returns the same connection. + * @return true if there was a retransmit * @throws IOException */ protected boolean authorizationRetransmit() throws IOException { @@ -1755,7 +1751,6 @@ public abstract class HTTPConduit * If trust cannot be established the Trust Decider implemenation * throws an IOException. * - * @param message The message being sent. * @throws IOException This exception is thrown if trust cannot be * established by the configured MessageTrustDecider. * @see MessageTrustDecider http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyEngineImpl.java ---------------------------------------------------------------------- diff --git a/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyEngineImpl.java b/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyEngineImpl.java index a548651..e264ffe 100644 --- a/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyEngineImpl.java +++ b/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyEngineImpl.java @@ -619,7 +619,7 @@ public class PolicyEngineImpl implements PolicyEngine, BusExtension { * that implements the Assertor interface). * * @param alternative the policy alternative - * @param Assertor the assertor + * @param assertor the assertor * @return true iff the alternative can be supported */ public boolean supportsAlternative(Collection alternative, http://git-wip-us.apache.org/repos/asf/cxf/blob/ff839064/testutils/src/main/java/org/apache/cxf/test/AbstractCXFSpringTest.java ---------------------------------------------------------------------- diff --git a/testutils/src/main/java/org/apache/cxf/test/AbstractCXFSpringTest.java b/testutils/src/main/java/org/apache/cxf/test/AbstractCXFSpringTest.java index d5bade0..cfb22f0 100644 --- a/testutils/src/main/java/org/apache/cxf/test/AbstractCXFSpringTest.java +++ b/testutils/src/main/java/org/apache/cxf/test/AbstractCXFSpringTest.java @@ -42,7 +42,6 @@ public abstract class AbstractCXFSpringTest extends AbstractCXFTest { private Class configContextClass = AbstractCXFSpringTest.class; /** * Load up all the beans from the XML files returned by the getConfigLocations method. - * @throws Exception */ protected AbstractCXFSpringTest() { }