Merge pull request #5064 from RasmusWL/fix-missing-override

Python: Add missing override annotation
This commit is contained in:
Taus
2021-02-01 12:37:38 +01:00
committed by GitHub

View File

@@ -32,7 +32,7 @@ private class ExpatCreateParser extends TaintSource {
override predicate isSourceOf(TaintKind kind) { kind instanceof ExpatParser }
string toString() { result = "expat.create.parser" }
override string toString() { result = "expat.create.parser" }
}
private FunctionObject xmlFromString() {