Skip to content

Commit

Permalink
remove final modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed May 16, 2024
1 parent aae3cd4 commit 88dd8f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import org.apache.pekko
import pekko.util.ByteString
import pekko.util.ByteString.ByteString1C

private[pekkohttpjackson] final object ByteStringInputStream {
private[pekkohttpjackson] object ByteStringInputStream {
private val byteStringInputStreamMethodTypeOpt = Try {
val lookup = MethodHandles.publicLookup()
val inputStreamMethodType = MethodType.methodType(classOf[InputStream])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.io.{ ByteArrayInputStream, InputStream }
import java.lang.invoke.{ MethodHandles, MethodType }
import scala.util.Try

private[pekkohttpplayjson] final object ByteStringInputStream {
private[pekkohttpplayjson] object ByteStringInputStream {
private val byteStringInputStreamMethodTypeOpt = Try {
val lookup = MethodHandles.publicLookup()
val inputStreamMethodType = MethodType.methodType(classOf[InputStream])
Expand Down

0 comments on commit 88dd8f7

Please sign in to comment.