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 46d0aa0 commit cea277bCopy full SHA for cea277b
utbot-framework/src/main/kotlin/org/utbot/engine/Traverser.kt
@@ -1791,8 +1791,7 @@ class Traverser(
1791
private fun isStaticFieldMeaningful(field: SootField) =
1792
!Modifier.isSynthetic(field.modifiers) &&
1793
// we don't want to set fields from library classes
1794
- !javaPackagesToProcessConcretely.any { field.declaringClass.packageName.startsWith(it) } &&
1795
- !sunPackagesToProcessConcretely.any { field.declaringClass.packageName.startsWith(it) }
+ !field.declaringClass.isFromTrustedLibrary()
1796
1797
/**
1798
* Locates object represents static fields of particular class.
0 commit comments