remove redundant extends clause

This commit is contained in:
Erik Krogh Kristensen
2022-04-21 09:13:10 +02:00
parent 6007dfa101
commit c1798c4ebd

View File

@@ -335,8 +335,7 @@ module DomBasedXss {
/**
* A sanitizer that blocks the `PrefixString` label when the start of the string is being tested as being of a particular prefix.
*/
abstract class PrefixStringSanitizer extends TaintTracking::SanitizerGuardNode,
TaintTracking::LabeledSanitizerGuardNode instanceof StringOps::StartsWith {
abstract class PrefixStringSanitizer extends TaintTracking::LabeledSanitizerGuardNode instanceof StringOps::StartsWith {
override predicate sanitizes(boolean outcome, Expr e, DataFlow::FlowLabel label) {
e = super.getBaseString().asExpr() and
label = prefixLabel() and