Skip to content

Disabled NPE checks for non-public library fields by default #353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Used only JDK as a default trusted library
  • Loading branch information
Damtev committed Jul 7, 2022
commit be48844b52b61d61fd290bf023d7da4b7d133fd4
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ private const val userTrustedLibrariesKey: String = "utbot.settings.trusted.libr

object TrustedLibraries {
/**
* JDK and some "trustworthy" open-source libraries.
* Always "trust" JDK.
*/
private val defaultTrustedLibraries: List<String> = listOf(
"java",
Expand All @@ -21,14 +21,6 @@ object TrustedLibraries {
"org.omg",
"org.xml",
"org.w3c.dom",
"com.google.common",
"org.antlr.v4",
"org.antlr.runtime",
"com.alibaba.fastjson",
"com.alibaba.fescar.core",
"org.apache.pdfbox",
"io.seata.core",
"spoon"
)

private val userTrustedLibraries: List<String>
Expand Down