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 14783178BF for ; Thu, 4 Jun 2015 14:13:38 +0000 (UTC) Received: (qmail 24607 invoked by uid 500); 4 Jun 2015 14:13:38 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 24421 invoked by uid 500); 4 Jun 2015 14:13:37 -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 24404 invoked by uid 99); 4 Jun 2015 14:13:37 -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:13:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C1D51E0FE2; Thu, 4 Jun 2015 14:13:37 +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 Date: Thu, 04 Jun 2015 14:13:38 -0000 Message-Id: In-Reply-To: <9bfd8966ba2348cbac3f084074eb0438@git.apache.org> References: <9bfd8966ba2348cbac3f084074eb0438@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] cxf git commit: Comment typo Comment typo Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/8fc672b9 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/8fc672b9 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/8fc672b9 Branch: refs/heads/3.0.x-fixes Commit: 8fc672b9793339c70787d2e754d184eae6fb14cd Parents: e76de13 Author: Alessio Soldano Authored: Thu Jun 4 16:11:09 2015 +0200 Committer: Alessio Soldano Committed: Thu Jun 4 16:12:07 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/8fc672b9/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);