File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
java/ql/lib/semmle/code/java Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -623,8 +623,6 @@ private module ControlFlowGraphImpl {
623
623
or
624
624
result = first ( n .( InstanceOfExpr ) .getExpr ( ) )
625
625
or
626
- result = first ( n .( NotInstanceOfExpr ) .getExpr ( ) )
627
- or
628
626
result = first ( n .( SynchronizedStmt ) .getExpr ( ) )
629
627
or
630
628
result = n and
Original file line number Diff line number Diff line change @@ -2357,7 +2357,7 @@ class Argument extends Expr {
2357
2357
tgt .getParameter ( varargsParamPos ) .isVarargs ( ) and
2358
2358
arrayindex = pos - varargsParamPos and
2359
2359
arrayindex >= 0 and
2360
- arrayindex <= ( call .getNumArgument ( ) - tgt .getNumberOfParameters ( ) )
2360
+ arrayindex <= call .getNumArgument ( ) - tgt .getNumberOfParameters ( )
2361
2361
)
2362
2362
}
2363
2363
}
You can’t perform that action at this time.
0 commit comments