Skip to content

Commit

Permalink
avoid deprecated AnyRefMap
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k authored Dec 17, 2024
1 parent fb194d8 commit e1b04e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/src/main/scala/msgpack4z/JawnMsgpack.scala
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ object JawnMsgpack {

private[this] def msgpack2jsObj0(unpacker: MsgUnpacker, result: Result[JObject], unpackOptions: JawnUnpackOptions): Boolean = {
val size = unpacker.unpackMapHeader()
val obj = collection.mutable.AnyRefMap.empty[String, JValue]
val obj = collection.mutable.HashMap.empty[String, JValue]
var i = 0
val mapElem = Result.empty[JValue]
var success = true
Expand Down

0 comments on commit e1b04e6

Please sign in to comment.