Files
kotlin-fork/idea/testData/inspectionsLocal/logging/loggerInitializedWithForeignClass/commons/name.kt.after
T
2020-05-18 18:16:52 +03:00

13 lines
232 B
Plaintext
Vendored

// WITH_RUNTIME
package org.apache.commons.logging
class Foo {
private val logger = LogFactory.getLog(Foo::class.java.name)
}
class Bar
object LogFactory {
fun getLog(clazz: Class<*>) {}
fun getLog(name: String?) {}
}