From 2d6233fa78498c9108a6ebba77a857c4c5dd44cb Mon Sep 17 00:00:00 2001
From: Micah Silverman
Date: Tue, 14 Feb 2017 22:42:41 -0800
Subject: [PATCH] Removed redundant/incorrect docs
---
src/main/java/io/jsonwebtoken/JwtParser.java | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/main/java/io/jsonwebtoken/JwtParser.java b/src/main/java/io/jsonwebtoken/JwtParser.java
index fd1f6c7e..c0fa1603 100644
--- a/src/main/java/io/jsonwebtoken/JwtParser.java
+++ b/src/main/java/io/jsonwebtoken/JwtParser.java
@@ -187,9 +187,6 @@ public interface JwtParser {
* (as the {@code alg} header parameter).
*
*
This method overwrites any previously set key.
- *
- *
This is a convenience method: the string argument is first BASE64-decoded to a byte array and this resulting
- * byte array is used to invoke {@link #setSigningKey(byte[])}.
*
* @param key the algorithm-specific signature verification key to use to validate any discovered JWS digital
* signature.