Skip to content

Commit be36de9

Browse files
QL: Fix isAbstract
1 parent 1013cb4 commit be36de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/src/codeql_ql/ast/Ast.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ class Class extends TClass, TypeDeclaration, ModuleDeclaration {
806806
}
807807

808808
/** Holds if this class is abstract. */
809-
predicate isAbstract() { hasAnnotation(this, "abstract") }
809+
predicate isAbstract() { hasAnnotation("abstract") }
810810
}
811811

812812
/**

0 commit comments

Comments
 (0)