Skip to content

Commit

Permalink
Action sbt scalafmtAll
Browse files Browse the repository at this point in the history
  • Loading branch information
takapi327 committed Feb 8, 2025
1 parent 7bfba1b commit d88063d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ object ResultSetRowPacket:
*/
private def decodeResultSetRow(fieldLength: Int, columnLength: Int): Decoder[ResultSetRowPacket] =
(bits: BitVector) =>
val buffer = new Array[Option[String]](columnLength)
var remainder = bits
val buffer = new Array[Option[String]](columnLength)
var remainder = bits
var remainedSize = columnLength
while remainedSize > 0 do
val index = columnLength - remainedSize
Expand Down

0 comments on commit d88063d

Please sign in to comment.