diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-11-21 14:41:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-21 14:41:23 +0000 |
commit | 67477da563c008e0d5f27f7f749470f35ecb532d (patch) | |
tree | c53bfd40c9d982f09466dee5de4cab5178abcc6c /auth/auth-core/src | |
parent | 5b54d6757019e5dc6ff7b8a42078aa7d5ba0fd6d (diff) | |
parent | d9f6800e96e9fc5e44a6895791d0078485c8793c (diff) |
Merge "CodeSetter.java"
Diffstat (limited to 'auth/auth-core/src')
-rw-r--r-- | auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/CodeSetter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/CodeSetter.java b/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/CodeSetter.java index 761fd8cc..172f386e 100644 --- a/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/CodeSetter.java +++ b/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/CodeSetter.java @@ -41,7 +41,7 @@ class CodeSetter<TRANS extends Trans> { this.resp = resp; } - public boolean matches(Route<TRANS> route) throws IOException, ServletException { + public boolean matches(Route<TRANS> route) { // Find best Code in Route based on "Accepts (Get) or Content-Type" (if exists) return (code = route.getCode(trans, req, resp))!=null; } |