From 2871bdb206b744d4031f820ece916abf4cc39312 Mon Sep 17 00:00:00 2001 From: Surya Prakash Sahu Date: Sun, 17 Oct 2021 18:04:20 +0530 Subject: [PATCH] Python SignatureOverriddenMethod: Rmv duplicate condition --- python/ql/src/Functions/SignatureOverriddenMethod.ql | 1 - 1 file changed, 1 deletion(-) diff --git a/python/ql/src/Functions/SignatureOverriddenMethod.ql b/python/ql/src/Functions/SignatureOverriddenMethod.ql index e695f2385eae..85f1f0c2eb10 100644 --- a/python/ql/src/Functions/SignatureOverriddenMethod.ql +++ b/python/ql/src/Functions/SignatureOverriddenMethod.ql @@ -24,7 +24,6 @@ where not derived.getScope().isSpecialMethod() and derived.getName() != "__init__" and derived.isNormalMethod() and - not derived.getScope().isSpecialMethod() and // call to overrides distributed for efficiency ( derived.overrides(base) and derived.minParameters() > base.maxParameters()