Fix imports in docs example (#1028)

This commit is contained in:
quapka
2025-10-15 18:12:42 +02:00
committed by GitHub
parent 6f6f027bcb
commit 299c14e3c2

View File

@@ -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.