removed TODO about empty JWK set at the client. issue #391.

pull/419/merge
William Kim 2013-07-17 15:35:52 -04:00
parent 475a6fd4a2
commit 7b969f9776
1 changed files with 0 additions and 2 deletions

View File

@ -94,8 +94,6 @@ public class ClientKeyPublisher implements BeanDefinitionRegistryPostProcessor {
// map from key id to key // map from key id to key
Map<String, JWK> keys = signingAndValidationService.getAllPublicKeys(); Map<String, JWK> keys = signingAndValidationService.getAllPublicKeys();
// TODO: check if keys are empty, return a 404 here or just an empty list?
return new ModelAndView(jwkViewName, "keys", keys); return new ModelAndView(jwkViewName, "keys", keys);
} }