Skip to content

Commit 9f3d95f

Browse files
committed
Don't mark Base64 decoder instance as final
#225 (comment)
1 parent 1d89563 commit 9f3d95f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scalajvm/app/security/BasicAuth.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ case class BasicAuth[A](action: Action[A])(implicit configuration: Configuration
6060

6161
lazy val parser = action.parser
6262

63-
private final val decoder = Base64.getDecoder()
63+
private val decoder = Base64.getDecoder()
6464
}

0 commit comments

Comments
 (0)