File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ruby/ql/lib/codeql/ruby/frameworks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ abstract private class IOOrFileMethodCall extends DataFlow::CallNode {
72
72
abstract string getApi ( ) ;
73
73
74
74
/** DEPRECATED: Alias for getApi */
75
- deprecated string getAPI ( ) { result = getApi ( ) }
75
+ deprecated string getAPI ( ) { result = this . getApi ( ) }
76
76
77
77
/** Gets a node representing the data read or written by this call */
78
78
abstract DataFlow:: Node getADataNodeImpl ( ) ;
@@ -116,7 +116,7 @@ private class IOOrFileReadMethodCall extends IOOrFileMethodCall {
116
116
override string getApi ( ) { result = api }
117
117
118
118
/** DEPRECATED: Alias for getApi */
119
- deprecated override string getAPI ( ) { result = getApi ( ) }
119
+ deprecated override string getAPI ( ) { result = this . getApi ( ) }
120
120
121
121
override DataFlow:: Node getADataNodeImpl ( ) { result = this }
122
122
@@ -160,7 +160,7 @@ private class IOOrFileWriteMethodCall extends IOOrFileMethodCall {
160
160
override string getApi ( ) { result = api }
161
161
162
162
/** DEPRECATED: Alias for getApi */
163
- deprecated override string getAPI ( ) { result = getApi ( ) }
163
+ deprecated override string getAPI ( ) { result = this . getApi ( ) }
164
164
165
165
override DataFlow:: Node getADataNodeImpl ( ) { result = dataNode }
166
166
You can’t perform that action at this time.
0 commit comments