Skip to content

Commit c1798c4

Browse files
committed
remove redundant extends clause
1 parent 6007dfa commit c1798c4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

javascript/ql/lib/semmle/javascript/security/dataflow/DomBasedXssCustomizations.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,7 @@ module DomBasedXss {
335335
/**
336336
* A sanitizer that blocks the `PrefixString` label when the start of the string is being tested as being of a particular prefix.
337337
*/
338-
abstract class PrefixStringSanitizer extends TaintTracking::SanitizerGuardNode,
339-
TaintTracking::LabeledSanitizerGuardNode instanceof StringOps::StartsWith {
338+
abstract class PrefixStringSanitizer extends TaintTracking::LabeledSanitizerGuardNode instanceof StringOps::StartsWith {
340339
override predicate sanitizes(boolean outcome, Expr e, DataFlow::FlowLabel label) {
341340
e = super.getBaseString().asExpr() and
342341
label = prefixLabel() and

0 commit comments

Comments
 (0)