Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 96F59178A6 for ; Thu, 4 Jun 2015 14:11:31 +0000 (UTC) Received: (qmail 20118 invoked by uid 500); 4 Jun 2015 14:11:31 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 20056 invoked by uid 500); 4 Jun 2015 14:11:31 -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 20047 invoked by uid 99); 4 Jun 2015 14:11:31 -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; Thu, 04 Jun 2015 14:11:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5D3BFE0FBF; Thu, 4 Jun 2015 14:11:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: asoldano@apache.org To: commits@cxf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Comment typo Date: Thu, 4 Jun 2015 14:11:31 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master d5585c4c3 -> a2c4be5e9 Comment typo Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a2c4be5e Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a2c4be5e Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a2c4be5e Branch: refs/heads/master Commit: a2c4be5e99472fc23b1740fc594e5d4c64961ca4 Parents: d5585c4 Author: Alessio Soldano Authored: Thu Jun 4 16:11:09 2015 +0200 Committer: Alessio Soldano Committed: Thu Jun 4 16:11:09 2015 +0200 ---------------------------------------------------------------------- .../org/apache/cxf/common/util/ExtensionInvocationHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a2c4be5e/core/src/main/java/org/apache/cxf/common/util/ExtensionInvocationHandler.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/common/util/ExtensionInvocationHandler.java b/core/src/main/java/org/apache/cxf/common/util/ExtensionInvocationHandler.java index 7672382..53185e8 100644 --- a/core/src/main/java/org/apache/cxf/common/util/ExtensionInvocationHandler.java +++ b/core/src/main/java/org/apache/cxf/common/util/ExtensionInvocationHandler.java @@ -33,7 +33,7 @@ public class ExtensionInvocationHandler implements InvocationHandler { if (method.getDeclaringClass().isAssignableFrom(obj.getClass())) { return method.invoke(obj, args); } else { - //in case obj has the required method with exact signature despite it's class + //in case obj has the required method with exact signature despite its class //not being assignable from the class declaring the specified method Method m = obj.getClass().getMethod(method.getName(), method.getParameterTypes()); return m.invoke(obj, args);