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 <asold...@redhat.com> Authored: Thu Jun 4 16:11:09 2015 +0200 Committer: Alessio Soldano <asold...@redhat.com> 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);