From e4bc66ba33f3714f7ce98d8fabf98c330a6e795c Mon Sep 17 00:00:00 2001 From: Mike Derryberry Date: Tue, 17 Jul 2012 13:23:39 -0400 Subject: [PATCH] small TODO statements cleared up --- openid-connect-common/src/main/java/org/mitre/jwk/model/Rsa.java | 1 - 1 file changed, 1 deletion(-) diff --git a/openid-connect-common/src/main/java/org/mitre/jwk/model/Rsa.java b/openid-connect-common/src/main/java/org/mitre/jwk/model/Rsa.java index c09d9c1b4..882ffd677 100644 --- a/openid-connect-common/src/main/java/org/mitre/jwk/model/Rsa.java +++ b/openid-connect-common/src/main/java/org/mitre/jwk/model/Rsa.java @@ -49,7 +49,6 @@ public class Rsa extends AbstractJwk{ @Override public PublicKey getKey() throws NoSuchAlgorithmException, InvalidKeySpecException { - // TODO Auto-generated method stub byte[] modulusByte = Base64.decodeBase64(mod); BigInteger modulus = new BigInteger(modulusByte); byte[] exponentByte = Base64.decodeBase64(exp);