Skip to content

Commit c26d14c

Browse files
committed
scalafmt
Change-Id: I6ff8902851040dd6f0ca4868ad589743191d6a30 Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/229710 Reviewed-by: David Nault <[email protected]> Tested-by: David Nault <[email protected]>
1 parent 0e62d50 commit c26d14c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scala-implicits/src/main/scala/com/couchbase/client/scala/codec/JsonTranscoder.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ class JsonTranscoder() extends TranscoderWithSerializer {
3030
new InvalidArgumentException(
3131
"byte[] input is not supported for the " +
3232
"JsonTranscoder! If you want to store already encoded JSON, use the RawJsonTranscoder, otherwise store " +
33-
"it with the RawBinaryTranscoder!", null, null
33+
"it with the RawBinaryTranscoder!",
34+
null,
35+
null
3436
)
3537
)
3638
case _ =>
@@ -48,7 +50,9 @@ class JsonTranscoder() extends TranscoderWithSerializer {
4850
new InvalidArgumentException(
4951
"Array[Byte] input is not supported for the JsonTranscoder!. " +
5052
"If you want to read already encoded JSON, use the RawJsonTranscoder, otherwise read it " +
51-
"with the RawBinaryTranscoder!", null, null
53+
"with the RawBinaryTranscoder!",
54+
null,
55+
null
5256
)
5357
)
5458
} else {

0 commit comments

Comments
 (0)