From 770652cf727c817c318df1fa25c0b2881837d637 Mon Sep 17 00:00:00 2001 From: Luna712 <142361265+Luna712@users.noreply.github.com> Date: Sat, 23 May 2026 11:16:10 -0600 Subject: [PATCH] Replace ArrayList in extractor --- .../kotlin/com/lagradost/cloudstream3/extractors/Userload.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/Userload.kt b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/Userload.kt index 582be8afb2f..fad6e8571b3 100644 --- a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/Userload.kt +++ b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/Userload.kt @@ -6,8 +6,6 @@ import com.lagradost.cloudstream3.utils.* import org.mozilla.javascript.Context import org.mozilla.javascript.EvaluatorException import org.mozilla.javascript.Scriptable -import java.util.* - open class Userload : ExtractorApi() { override var name = "Userload" @@ -16,7 +14,7 @@ open class Userload : ExtractorApi() { private fun splitInput(input: String): List { var counter = 0 - val array = ArrayList() + val array = mutableListOf() var buffer = "" for (c in input) { when (c) {