Skip to content

Commit 65af61b

Browse files
committed
Oops, changing wrong verify method signature.
1 parent 90c7313 commit 65af61b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/auth0/jwt/JWTVerifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public JWTVerifier(String secret) {
6565
* @throws SignatureException when signature is invalid
6666
* @throws IllegalStateException when token's structure, expiration, issuer or audience are invalid
6767
*/
68-
public Map<String, String> verify(String token)
68+
public Map<String, Object> verify(String token)
6969
throws NoSuchAlgorithmException, InvalidKeyException, IllegalStateException,
7070
IOException, SignatureException {
7171
if (token == null || "".equals(token)) {

0 commit comments

Comments
 (0)