From 299c14e3c2e365b6c2a2f8531bf3744ea66c8544 Mon Sep 17 00:00:00 2001 From: quapka Date: Wed, 15 Oct 2025 18:12:42 +0200 Subject: [PATCH] Fix imports in docs example (#1028) --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 6c8c0d61..5dd1e9c7 100644 --- a/README.adoc +++ b/README.adoc @@ -737,7 +737,7 @@ code quickly. Here's an example: ---- import io.jsonwebtoken.Jwts; import io.jsonwebtoken.security.Keys; -import java.security.Key; +import javax.crypto.SecretKey; // We need a signing key, so we'll create one just for this example. Usually // the key would be read from your application configuration instead.