Author: dkulp
Date: Wed Dec 5 09:13:54 2007
New Revision: 601418
URL: http://svn.apache.org/viewvc?rev=601418&view=rev
Log:
Merged revisions 601212 via svnmerge from
https://svn.apache.org/repos/asf/incubator/cxf/trunk
........
r601212 | ningjiang | 2007-12-05 00:28:17 -0500 (Wed, 05 Dec 2007) | 1 line
Fixed a typo in the ExtensionManagerImpl, thanks Glen
........
Modified:
incubator/cxf/branches/2.0.x-fixes/ (props changed)
incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/extension/ExtensionManagerImpl.java
Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/extension/ExtensionManagerImpl.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/extension/ExtensionManagerImpl.java?rev=601418&r1=601417&r2=601418&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/extension/ExtensionManagerImpl.java
(original)
+++
incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/extension/ExtensionManagerImpl.java
Wed Dec 5 09:13:54 2007
@@ -157,7 +157,7 @@
// Since we need to support spring2.5 by removing
@Resource("activationNamespaces")
// Now we call the setActivationNamespaces method directly here
- invockSetterActivationNSMethod(obj, e.getNamespaces());
+ invokeSetterActivationNSMethod(obj, e.getNamespaces());
ResourceInjector injector = new ResourceInjector(resourceManager);
@@ -201,7 +201,7 @@
return null;
}
- private void invockSetterActivationNSMethod(Object target, Object value) {
+ private void invokeSetterActivationNSMethod(Object target, Object value) {
Class clazz = target.getClass();
String methodName = ACTIVATION_NAMESPACES_SETTER_METHOD_NAME;
while (clazz != Object.class) {