summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-11-06 13:38:32 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-06 13:38:32 +0000
commit3b28b4348ab1fa845cfb607c5bdb915516e83c98 (patch)
treea3f88c1874a99274c7c79e135a6e05acb00de8da /auth
parente9fe301227c0dc8327ed0f6239f90724b2515970 (diff)
parent62c25e443a4cb691aafed1819a03cc352687186c (diff)
Merge "API_History.java -remove the thrown exception"
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-service/src/main/java/org/onap/aaf/auth/service/api/API_History.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-service/src/main/java/org/onap/aaf/auth/service/api/API_History.java b/auth/auth-service/src/main/java/org/onap/aaf/auth/service/api/API_History.java
index 341719c3..6354f6a9 100644
--- a/auth/auth-service/src/main/java/org/onap/aaf/auth/service/api/API_History.java
+++ b/auth/auth-service/src/main/java/org/onap/aaf/auth/service/api/API_History.java
@@ -208,7 +208,7 @@ public class API_History {
// Get Common "yyyymm" parameter, or none
- private static int[] getYears(HttpServletRequest req) throws NumberFormatException {
+ private static int[] getYears(HttpServletRequest req) {
// Sonar says threading issues.
SimpleDateFormat FMT = new SimpleDateFormat("yyyyMM");
String yyyymm = req.getParameter("yyyymm");