There was an error while loading. Please reload this page.
1 parent 2fef94d commit 861070bCopy full SHA for 861070b
1 file changed
lib/src/main/kotlin/io/nexure/capsule/Capsule.kt
@@ -34,10 +34,8 @@ private constructor(
34
35
fun <T : Any> getMany(clazz: Class<T>): List<T> {
36
val key: String = classKey(clazz)
37
- println("Looking for $key")
38
return dependencies
39
- .filter { (it.key == key).also { bool -> println("${it.key} == $key => $bool") } }
40
- .onEach { "Found match ${it.key}" }
+ .filter { (it.key == key) }
41
.map { it.getInstance() as T }.toList()
42
}
43
0 commit comments