Skip to content

Commit 2435353

Browse files
committed
avoid deprecated AnyRefMap
1 parent fb194d8 commit 2435353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/src/main/scala/msgpack4z/JawnMsgpack.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ object JawnMsgpack {
110110

111111
private[this] def msgpack2jsObj0(unpacker: MsgUnpacker, result: Result[JObject], unpackOptions: JawnUnpackOptions): Boolean = {
112112
val size = unpacker.unpackMapHeader()
113-
val obj = collection.mutable.AnyRefMap.empty[String, JValue]
113+
val obj = collection.mutable.HashMap.empty[String, JValue]
114114
var i = 0
115115
val mapElem = Result.empty[JValue]
116116
var success = true

0 commit comments

Comments
 (0)