Ruby: fix clashing method names from merge conflict

This commit is contained in:
Nick Rolfe
2022-11-09 17:06:43 +00:00
parent c8c53cb424
commit 0d9aa0cdac

View File

@@ -162,13 +162,13 @@ class MyController < ActionController::Base
end
module Mixin
def m33
def m34
sink params[:x] # $hasTaintFlow
end
end
class Subclass < MyController
def m34
def m35
sink params[:x] # $hasTaintFlow
end