Skip to content

Commit 861070b

Browse files
committed
Remove some println statements
1 parent 2fef94d commit 861070b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lib/src/main/kotlin/io/nexure/capsule/Capsule.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ private constructor(
3434

3535
fun <T : Any> getMany(clazz: Class<T>): List<T> {
3636
val key: String = classKey(clazz)
37-
println("Looking for $key")
3837
return dependencies
39-
.filter { (it.key == key).also { bool -> println("${it.key} == $key => $bool") } }
40-
.onEach { "Found match ${it.key}" }
38+
.filter { (it.key == key) }
4139
.map { it.getInstance() as T }.toList()
4240
}
4341

0 commit comments

Comments
 (0)