File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
ruby/ql/lib/codeql/ruby/ast Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -202,17 +202,13 @@ class ConstantWriteAccess extends ConstantAccess {
202
202
* constants up the namespace chain, the fully qualified name of a nested
203
203
* constant can be ambiguous from just statically looking at the AST.
204
204
*/
205
- string getAQualifiedName ( ) {
206
- result = resolveConstantWriteAccess ( this )
207
- }
205
+ string getAQualifiedName ( ) { result = resolveConstantWriteAccess ( this ) }
208
206
209
207
/**
210
208
* Gets a qualified name for this constant. Deprecated in favor of
211
209
* `getAQualifiedName` because this can return more than one value
212
210
*/
213
- deprecated string getQualifiedName ( ) {
214
- result = this .getAQualifiedName ( )
215
- }
211
+ deprecated string getQualifiedName ( ) { result = this .getAQualifiedName ( ) }
216
212
}
217
213
218
214
/**
You can’t perform that action at this time.
0 commit comments