Skip to content

Commit

Permalink
Remove println statement in production code
Browse files Browse the repository at this point in the history
  • Loading branch information
nodh committed Sep 26, 2024
1 parent 225fd9a commit 0c5d29e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ data class JsonWebKey(
*/
val jwkThumbprint: String by lazy {
val jsonEncoded = Json.encodeToString(this.toMinimalJsonWebKey().getOrNull() ?: this)
.also { println(it) }
val thumbprint = jsonEncoded
.encodeToByteArray().toByteString().sha256().toByteArray().encodeToString(Base64UrlStrict)
"urn:ietf:params:oauth:jwk-thumbprint:sha256:${thumbprint}"
Expand Down

0 comments on commit 0c5d29e

Please sign in to comment.