Repository: cxf Updated Branches: refs/heads/3.1.x-fixes a9d135b01 -> dc88f7385
[CXF-6661] Minor update Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/dc88f738 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/dc88f738 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/dc88f738 Branch: refs/heads/3.1.x-fixes Commit: dc88f7385af5c26aba31c74c1010265567615002 Parents: 57acdfc Author: Sergey Beryozkin <[email protected]> Authored: Fri Nov 6 12:08:51 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Nov 6 12:10:02 2015 +0000 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/jaxrs/model/wadl/WadlGenerator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/dc88f738/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 d4ccd83..dd044fe 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 @@ -2164,12 +2164,12 @@ public class WadlGenerator implements ContainerRequestFilter { public void setStylesheetReference(String stylesheetReference) { this.stylesheetReference = stylesheetReference; } - public void setIncludeWadlSchemaLocation(String loc) { + public void setWadlSchemaLocation(String loc) { this.wadlSchemaLocation = loc; } public void setIncludeDefaultWadlSchemaLocation(boolean inc) { if (inc) { - setIncludeWadlSchemaLocation(DEFAULT_WADL_SCHEMA_LOC); + setWadlSchemaLocation(DEFAULT_WADL_SCHEMA_LOC); } }
