C#: Remove unnecessary isEffectivelyPublic predicate

This commit is contained in:
Koen Vlaswinkel
2023-09-18 13:49:16 +02:00
parent ff2cef3d6b
commit 8472b84cad

View File

@@ -13,8 +13,7 @@ private import AutomodelVsCode
class ExternalApi extends CallableMethod {
ExternalApi() {
this.isUnboundDeclaration() and
this.fromLibrary() and
this.(Modifiable).isEffectivelyPublic()
this.fromLibrary()
}
}