diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-11-06 13:38:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-06 13:38:32 +0000 |
commit | 3b28b4348ab1fa845cfb607c5bdb915516e83c98 (patch) | |
tree | a3f88c1874a99274c7c79e135a6e05acb00de8da /auth | |
parent | e9fe301227c0dc8327ed0f6239f90724b2515970 (diff) | |
parent | 62c25e443a4cb691aafed1819a03cc352687186c (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.java | 2 |
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"); |