We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa3e1b commit 8ee46aaCopy full SHA for 8ee46aa
utbot-framework/src/main/kotlin/org/utbot/framework/assemble/AssembleModelGenerator.kt
@@ -420,7 +420,7 @@ class AssembleModelGenerator(private val basePackageName: String) {
420
get() = this.isPublic || !this.isPrivate && this.packageName == basePackageName
421
422
private val Constructor<*>.isVisible : Boolean
423
- get() = this.isPublic || !this.isPrivate && this.declaringClass.packageName == basePackageName
+ get() = this.isPublic || !this.isPrivate && this.declaringClass.`package`.name == basePackageName
424
425
/**
426
* Creates setter or direct setter call to set a field.
0 commit comments