From e51b07584aa1bd9fa1797594b2e2041a00ff3edb Mon Sep 17 00:00:00 2001 From: "Wendland, Florian" Date: Thu, 7 Mar 2024 13:46:17 +0100 Subject: [PATCH] Remove obsolete CLI option --- .../aisec/codyze/backends/cpg/CPGOptionGroup.kt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/codyze-backends/cpg/src/main/kotlin/de/fraunhofer/aisec/codyze/backends/cpg/CPGOptionGroup.kt b/codyze-backends/cpg/src/main/kotlin/de/fraunhofer/aisec/codyze/backends/cpg/CPGOptionGroup.kt index 3a8c9552c..c77aa418b 100644 --- a/codyze-backends/cpg/src/main/kotlin/de/fraunhofer/aisec/codyze/backends/cpg/CPGOptionGroup.kt +++ b/codyze-backends/cpg/src/main/kotlin/de/fraunhofer/aisec/codyze/backends/cpg/CPGOptionGroup.kt @@ -82,17 +82,6 @@ class CPGOptionGroup : BackendOptions(helpName = "CPG Backend Options") { help = "Enables unity builds (C++ only) for files in the path." ) .flag("--no-unity", "--disable-unity", default = false) - val typeSystemActiveInFrontend: Boolean by option( - "--type-system-in-frontend", - help = "If deactivated, the type listener system starts after the frontends " + - "are done building the initial AST structure." - ) - .flag( - "--no-type-system-in-frontend", - "--disable-type-system-in-frontend", - default = true, - defaultForHelp = "enable" - ) val debugParser: Boolean by option("--debug-parser", help = "Generate debug output for the cpg parser.") .flag("--no-debug-parser", default = false) val disableCleanup: Boolean by option(