Java: add missing QLDoc

The check for QLDoc comments was unfortunately broken for some time, so
we missed this.
This commit is contained in:
Paolo Tranquilli
2025-11-19 11:57:38 +01:00
parent e850a8a46c
commit b3c09389c8

View File

@@ -9,6 +9,7 @@ private import semmle.code.java.dataflow.SSA as Ssa
private import semmle.code.java.dataflow.RangeUtils as RU
class SsaVariable extends Ssa::SsaDefinition {
/** Gets a use of this variable. */
Expr getAUse() { result = super.getARead() }
}