We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47df177 commit 13478e6Copy full SHA for 13478e6
ktorm-core/src/main/kotlin/org/ktorm/entity/DefaultMethodHandler.kt
@@ -72,7 +72,7 @@ internal class DefaultMethodHandler(
72
73
private fun initLookupConstructor(): Constructor<Lookup>? {
74
try {
75
- // This method only runs in JDK 1.8, so the reflection operation (setAccessible) is safe.
+ // This branch only runs in JDK 1.8, so the reflection operation (setAccessible) is safe.
76
val c = Lookup::class.java.getDeclaredConstructor(Class::class.java, Int::class.javaPrimitiveType)
77
c.isAccessible = true
78
return c
0 commit comments