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

Reply via email to