C#: Remove unused predicate

This commit is contained in:
Tom Hvitved
2021-12-17 09:30:28 +01:00
parent e4d9f5f29e
commit 77fcb8a18f

View File

@@ -1491,13 +1491,6 @@ class FieldOrProperty extends Assignable, Modifiable {
or
result.(PropertyContent).getProperty() = this.getUnboundDeclaration()
}
/** Gets the initializer of this field or property, if any. */
Expr getInitialier() {
result = this.(Field).getInitializer()
or
result = this.(Property).getInitializer()
}
}
private class InstanceFieldOrProperty extends FieldOrProperty {