From 82c1fb0dfaf4727aac1d1bf129bc3d8fc575e419 Mon Sep 17 00:00:00 2001 From: quapka Date: Wed, 15 Oct 2025 12:33:07 +0200 Subject: [PATCH] Fix imports in docs example --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 6c8c0d610..5dd1e9c70 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.