Skip to content

Commit ce3665d

Browse files
committed
Ruby: remove unneeded qualified AST import
1 parent 665ee81 commit ce3665d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ruby/ql/lib/codeql/ruby/dataflow/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
private import codeql.ruby.AST
22
private import codeql.ruby.ast.internal.Synthesis
33
private import codeql.ruby.CFG
4-
private import codeql.ruby.AST as AST
54
private import codeql.ruby.dataflow.SSA
65
private import DataFlowPublic
76
private import DataFlowDispatch
@@ -415,7 +414,7 @@ private module Cached {
415414
)
416415
} or
417416
// Only used by type-tracking
418-
TAttributeName(string name) { name = any(AST::SetterMethodCall c).getTargetName() }
417+
TAttributeName(string name) { name = any(SetterMethodCall c).getTargetName() }
419418

420419
/**
421420
* Holds if `e` is an `ExprNode` that may be returned by a call to `c`.

0 commit comments

Comments
 (0)