File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/java/io/jsonwebtoken/impl
test/groovy/io/jsonwebtoken/impl Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424import java .nio .charset .StandardCharsets ;
2525
2626/**
27- * A {@link Deserializer} implementation that wraps another Deserializer implementation to adds common JWT related
27+ * A {@link Deserializer} implementation that wraps another Deserializer implementation to add common JWT related
2828 * error handling.
2929 * @param <T> type of object to deserialize.
3030 * @since 0.11.3
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import static org.junit.Assert.assertEquals
3232class JwtDeserializerTest {
3333
3434 /**
35- * It's common for JSON parser's to throw a StackOverflowError when body is deeply nested. Since it's common
35+ * It's common for JSON parsers to throw a StackOverflowError when body is deeply nested. Since it's common
3636 * across multiple parsers, JJWT handles the exception when parsing.
3737 */
3838 @Test
@@ -54,7 +54,7 @@ class JwtDeserializerTest {
5454 }
5555
5656 /**
57- * Check that a DeserializationException, is wrapped and rethrown as a MalformedJwtException with a developer friendly message.
57+ * Check that a DeserializationException is wrapped and rethrown as a MalformedJwtException with a developer friendly message.
5858 */
5959 @Test
6060 void testDeserializationExceptionMessage () {
You can’t perform that action at this time.
0 commit comments