From 1c9864286d47ec106390f910d721e9001979bdbe Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Thu, 10 Mar 2022 18:29:29 -0500 Subject: [PATCH] Remove SystemProperty from FlowSources --- java/ql/lib/semmle/code/java/dataflow/FlowSources.qll | 3 --- 1 file changed, 3 deletions(-) diff --git a/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll b/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll index 00741b827bb6..d90e96e78982 100644 --- a/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll +++ b/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll @@ -6,7 +6,6 @@ import java import semmle.code.java.dataflow.DataFlow import semmle.code.java.dataflow.TaintTracking import semmle.code.java.dataflow.DefUse -import semmle.code.java.environment.SystemProperty import semmle.code.java.frameworks.Jdbc import semmle.code.java.frameworks.Networking import semmle.code.java.frameworks.Properties @@ -183,8 +182,6 @@ class EnvInput extends LocalUserInput { // Results from various specific methods. this.asExpr().(MethodAccess).getMethod() instanceof EnvReadMethod or - this.asExpr() = getSystemProperty(_) - or // Access to `System.in`. exists(Field f | this.asExpr() = f.getAnAccess() | f instanceof SystemIn) or