Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e93736f

Browse files
committed
Change base class of GeneratedDeclaration to Modifiable
1 parent 5305429 commit e93736f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

csharp/ql/src/Stubs/Stubs.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ abstract private class GeneratedType extends ValueOrRefType, GeneratedElement {
160160
* This is extended in client code to identify the actual
161161
* declarations that should be generated.
162162
*/
163-
abstract class GeneratedDeclaration extends Declaration {
164-
GeneratedDeclaration() { this.(Modifiable).isEffectivelyPublic() }
163+
abstract class GeneratedDeclaration extends Modifiable {
164+
GeneratedDeclaration() { this.isEffectivelyPublic() }
165165
}
166166

167167
private class IndirectType extends GeneratedType {

0 commit comments

Comments
 (0)