Repository: cxf Updated Branches: refs/heads/master 28379a02b -> 7f7034e7d
Fixing a typo Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7f7034e7 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7f7034e7 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7f7034e7 Branch: refs/heads/master Commit: 7f7034e7de9f424044a8858e6b6fbdcccca519b8 Parents: 28379a0 Author: Sergey Beryozkin <[email protected]> Authored: Wed Feb 4 12:11:06 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Feb 4 12:11:06 2015 +0000 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7f7034e7/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java ---------------------------------------------------------------------- diff --git a/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java b/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java index 00a9a70..3422555 100644 --- a/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java +++ b/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java @@ -1174,7 +1174,7 @@ public class WadlGenerator implements ContainerRequestFilter { if (href.endsWith(".xsl")) { List<Element> xslImports = DOMUtils.getChildrenWithName(docEl, XLS_NS, "import"); handleExistingDocRefs(xslImports, "href", loc, href, m, ui); - List<Element> xslIncludes = DOMUtils.getChildrenWithName(docEl, XLS_NS, "import"); + List<Element> xslIncludes = DOMUtils.getChildrenWithName(docEl, XLS_NS, "include"); handleExistingDocRefs(xslIncludes, "href", loc, href, m, ui); } else { if (fragmentIndex != -1) {
