Python: remove deprecation that were recently updated from an automated patch of mine

This commit is contained in:
Erik Krogh Kristensen
2022-03-07 10:53:07 +01:00
parent 5312e4a8b5
commit b8d632810e

View File

@@ -110,24 +110,3 @@ class ReModulePointToExtension extends PointsToExtension {
pragma[noinline]
private predicate pointsTo_helper(Context context) { context.appliesTo(this) }
}
deprecated private class BackwardCompatiblePointToExtension extends PointsToExtension instanceof CustomPointsToFact {
override predicate pointsTo(Context context, ObjectInternal value, ControlFlowNode origin) {
exists(Object obj, ClassObject cls |
CustomPointsToFact.super.pointsTo(context, obj, cls, origin)
|
value.getBuiltin() = obj
or
obj instanceof ControlFlowNode and
exists(ClassObjectInternal c |
c.getSource() = cls and
value = TUnknownInstance(c)
)
)
or
exists(ObjectInternal owner, string name |
PointsTo::pointsTo(this.(AttrNode).getObject(name), context, owner, _) and
additionalAttribute(owner, name, value, origin)
)
}
}