diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-11-06 01:09:36 +0530 |
---|---|---|
committer | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-11-06 01:16:39 +0530 |
commit | 62c25e443a4cb691aafed1819a03cc352687186c (patch) | |
tree | df20f49ac9a1cdadc9d7afaf6910ea5c861c2e4f /auth/auth-service/src/main/java/org | |
parent | bc5f9dec37da59182034c1166a6a9d4150f40847 (diff) |
API_History.java -remove the thrown exception
Issue-ID: AAF-876
Change-Id: I76f7db17ec562df07e36d96ee8e05e5128a14658
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'auth/auth-service/src/main/java/org')
-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"); |