Repository: cxf Updated Branches: refs/heads/master 86d7c4b90 -> a9264b0a5
[CXF-5623] Fix a typo Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a9264b0a Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a9264b0a Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a9264b0a Branch: refs/heads/master Commit: a9264b0a50812538913a82640be51ee143797225 Parents: 86d7c4b Author: Daniel Kulp <[email protected]> Authored: Fri Jun 13 16:52:16 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Jun 13 17:07:04 2014 -0400 ---------------------------------------------------------------------- rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a9264b0a/rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java ---------------------------------------------------------------------- diff --git a/rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java b/rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java index c225023..755581f 100644 --- a/rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java +++ b/rt/wsdl/src/main/java/org/apache/cxf/wsdl11/SchemaUtil.java @@ -125,7 +125,7 @@ public final class SchemaUtil { } String systemId = def.getDocumentBaseURI() + "#types" + schemaCount; if (def.getDocumentBaseURI() != null - && def.getDocumentBaseURI().toUpperCase().endsWith(".xsd") + && def.getDocumentBaseURI().toUpperCase().endsWith(".XSD") && def.getTargetNamespace() == null && obj instanceof Schema && ((Schema)obj).getDocumentBaseURI().equals(def.getDocumentBaseURI())) {
