We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c2dda commit be48844Copy full SHA for be48844
utbot-framework-api/src/main/kotlin/org/utbot/framework/TrustedLibraries.kt
@@ -11,7 +11,7 @@ private const val userTrustedLibrariesKey: String = "utbot.settings.trusted.libr
11
12
object TrustedLibraries {
13
/**
14
- * JDK and some "trustworthy" open-source libraries.
+ * Always "trust" JDK.
15
*/
16
private val defaultTrustedLibraries: List<String> = listOf(
17
"java",
@@ -21,14 +21,6 @@ object TrustedLibraries {
21
"org.omg",
22
"org.xml",
23
"org.w3c.dom",
24
- "com.google.common",
25
- "org.antlr.v4",
26
- "org.antlr.runtime",
27
- "com.alibaba.fastjson",
28
- "com.alibaba.fescar.core",
29
- "org.apache.pdfbox",
30
- "io.seata.core",
31
- "spoon"
32
)
33
34
private val userTrustedLibraries: List<String>
0 commit comments