Skip to content

Commit 8ed5bfb

Browse files
committed
Remove reference to DataFlow2
1 parent c65d407 commit 8ed5bfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/security/StaticInitializationVectorQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ private module ArrayUpdateFlow = DataFlow::Global<ArrayUpdateConfig>;
9999
private class StaticInitializationVectorSource extends DataFlow::Node {
100100
StaticInitializationVectorSource() {
101101
exists(StaticByteArrayCreation array | array = this.asExpr() |
102-
not ArrayUpdateFlow::flow(DataFlow2::exprNode(array), _) and
102+
not ArrayUpdateFlow::flow(DataFlow::exprNode(array), _) and
103103
// Reduce FPs from utility methods that return an empty array in an exceptional case
104104
not exists(ReturnStmt ret |
105105
array.getADimension().(CompileTimeConstantExpr).getIntValue() = 0 and

0 commit comments

Comments
 (0)