You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kotlinx-collections-immutable/src/main/kotlin/kotlinx/collections/immutable/implementations/immutableList/PersistentVector.kt
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ internal class PersistentVector<E>(private val root: Array<Any?>,
99
99
return insertIntoTail(root, index - rootSize, element)
100
100
}
101
101
102
-
val elementCarry =ObjectWrapper(null)
102
+
val elementCarry =ObjectRef(null)
103
103
val newRoot = insertIntoRoot(root, rootShift, index, element, elementCarry)
Copy file name to clipboardExpand all lines: kotlinx-collections-immutable/src/main/kotlin/kotlinx/collections/immutable/implementations/immutableList/PersistentVectorBuilder.kt
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ class PersistentVectorBuilder<E>(private var vector: PersistentList<E>,
156
156
return
157
157
}
158
158
159
-
val elementCarry =ObjectWrapper(null)
159
+
val elementCarry =ObjectRef(null)
160
160
val newRest = insertIntoRoot(root!!, rootShift, index, element, elementCarry)
Copy file name to clipboardExpand all lines: kotlinx-collections-immutable/src/main/kotlin/kotlinx/collections/immutable/implementations/immutableList/Utils.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ internal const val LOG_MAX_BUFFER_SIZE = 5
0 commit comments