aboutsummaryrefslogtreecommitdiffstats
path: root/policy-endpoints/src/main/java/org/onap/policy
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-06-18 14:12:38 +0000
committerGerrit Code Review <gerrit@onap.org>2021-06-18 14:12:38 +0000
commit0de684d53b9da8889244ddce49e5110d23d30ba8 (patch)
tree61e611f1bde4fabd7c0c1766cb53b5a9350a597c /policy-endpoints/src/main/java/org/onap/policy
parent459eca92aba02bd5a890265c5097fc793f917360 (diff)
parent91bbf2b36488c870b625f032220451155d014d20 (diff)
Merge "Fix new checkstyle issues in policy-common"
Diffstat (limited to 'policy-endpoints/src/main/java/org/onap/policy')
-rw-r--r--policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyStaticResourceServer.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyStaticResourceServer.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyStaticResourceServer.java
index 15d9990b..f0d6ba2c 100644
--- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyStaticResourceServer.java
+++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyStaticResourceServer.java
@@ -1,6 +1,7 @@
/*-
* ============LICENSE_START=======================================================
* Copyright (C) 2020 Nordix Foundation.
+ * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -84,9 +85,9 @@ public class JettyStaticResourceServer extends JettyServletServer {
*
* @throws IllegalArgumentException if invalid arguments are provided
*/
- protected synchronized ServletHolder getDefaultServlet(String servPath) {
+ protected synchronized ServletHolder getDefaultServlet(String servletPath) {
- return servlets.computeIfAbsent(servPath, key -> context.addServlet(DefaultServlet.class, servPath));
+ return servlets.computeIfAbsent(servletPath, key -> context.addServlet(DefaultServlet.class, servletPath));
}
@Override