Repository: tomee Updated Branches: refs/heads/master 9505fdc1a -> 5689b25ac
TOMEE-1721 moduleId is supposed nullable, not path Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/5689b25a Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/5689b25a Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/5689b25a Branch: refs/heads/master Commit: 5689b25ac70a243c4d838962e068856f889ea87f Parents: 9505fdc Author: Romain manni-Bucau <[email protected]> Authored: Sun Feb 28 10:03:26 2016 +0100 Committer: Romain manni-Bucau <[email protected]> Committed: Sun Feb 28 10:03:26 2016 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/tomee/webservices/TomcatWsRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/5689b25a/tomee/tomee-webservices/src/main/java/org/apache/tomee/webservices/TomcatWsRegistry.java ---------------------------------------------------------------------- diff --git a/tomee/tomee-webservices/src/main/java/org/apache/tomee/webservices/TomcatWsRegistry.java b/tomee/tomee-webservices/src/main/java/org/apache/tomee/webservices/TomcatWsRegistry.java index b33976f..e16c983 100644 --- a/tomee/tomee-webservices/src/main/java/org/apache/tomee/webservices/TomcatWsRegistry.java +++ b/tomee/tomee-webservices/src/main/java/org/apache/tomee/webservices/TomcatWsRegistry.java @@ -454,7 +454,7 @@ public class TomcatWsRegistry implements WsRegistry { private final String path; private final int hash; - public Key(final String moduleId, final String path) { + public Key(final String path, final String moduleId) { this.moduleId = moduleId; this.path = path; this.hash = 31 * (moduleId != null ? moduleId.hashCode() : 0) + path.hashCode();
