All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.name.remal.gradle_plugins.dsl.extensions.java.lang.reflect.Constructor.kt Maven / Gradle / Ivy

The newest version!
package name.remal.gradle_plugins.dsl.extensions

import name.remal.isPublic
import java.lang.reflect.Constructor

@Suppress("DEPRECATION")
fun  Constructor.makeAccessible() = apply {
    if (isAccessible) return@apply
    if (!isPublic || !declaringClass.isPublic) {
        isAccessible = true
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy