Author: ffang
Date: Wed Jan 12 11:23:19 2011
New Revision: 1058080
URL: http://svn.apache.org/viewvc?rev=1058080&view=rev
Log:
Merged revisions 1058070 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1058070 | ffang | 2011-01-12 19:05:42 +0800 (δΈ‰, 12 1 2011) | 1 line
[CXF-3238]also fix the inner module case
........
Modified:
cxf/branches/2.3.x-fixes/ (props changed)
cxf/branches/2.3.x-fixes/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/idl/TypesUtils.java
Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.3.x-fixes/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/idl/TypesUtils.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/idl/TypesUtils.java?rev=1058080&r1=1058079&r2=1058080&view=diff
==============================================================================
---
cxf/branches/2.3.x-fixes/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/idl/TypesUtils.java
(original)
+++
cxf/branches/2.3.x-fixes/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/idl/TypesUtils.java
Wed Jan 12 11:23:19 2011
@@ -109,7 +109,7 @@ public final class TypesUtils {
if (corbaType instanceof Const) {
Const corbaConst = (Const) corbaType;
String name = corbaConst.getQName().getLocalPart();
- if (name.equals(node.getText())) {
+ if (name.endsWith(node.getText())) {
return corbaConst.getValue();
}
}