diff --git a/assets/clut/U2415 #1 2017-10-22 23-00 120cdm² D6000 sRGB M-S XYZLUT.Rec709.bb1.0,2.2Gawn6516.png b/assets/clut/U2415 #1 2017-10-22 23-00 120cdm² D6000 sRGB M-S XYZLUT.Rec709.bb1.0,2.2Gawn6516.png deleted file mode 100644 index 0e806def4..000000000 Binary files a/assets/clut/U2415 #1 2017-10-22 23-00 120cdm² D6000 sRGB M-S XYZLUT.Rec709.bb1.0,2.2Gawn6516.png and /dev/null differ diff --git a/src/net/torvald/util/SortedArrayList.kt b/src/net/torvald/util/SortedArrayList.kt index daa6704fa..f4377f7c2 100644 --- a/src/net/torvald/util/SortedArrayList.kt +++ b/src/net/torvald/util/SortedArrayList.kt @@ -158,11 +158,7 @@ class SortedArrayList>(initialSize: Int = 10) : MutableCollecti inline fun forEachIndexed(action: (Int, T) -> Unit) = arrayList.forEachIndexed(action) fun cloneToList(): List { - val ret = ArrayList() - forEach { - ret.add(it) - } - return ret + return arrayList.toList() }