We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 463c096 commit 29e73e1Copy full SHA for 29e73e1
1 file changed
ruby/ql/lib/codeql/ruby/frameworks/ActiveRecord.qll
@@ -330,14 +330,12 @@ class ActiveRecordInstance extends DataFlow::Node {
330
ActiveRecordModelClass getClass() { result = instantiation.getClass() }
331
}
332
333
-/**
334
- * The `ActiveRecordInstance` receiver of this call.
335
- */
+/** The `ActiveRecordInstance` receiver of this call. */
336
class ActiveRecordInstanceMethodCall extends DataFlow::CallNode {
337
private ActiveRecordInstance instance;
338
339
ActiveRecordInstanceMethodCall() { this.getReceiver() = instance }
340
- // Gets the `ActiveRecordInstance` that this is the receiver of this call. */
+ /** Gets the `ActiveRecordInstance` that this is the receiver of this call. */
341
ActiveRecordInstance getInstance() { result = instance }
342
343
0 commit comments