class Module

Public Instance Methods

remove_possible_method!(method) click to toggle source
# File lib/superclass_delegating_accessor/class/remove_method.rb, line 2
def remove_possible_method!(method)
  if method_defined?(method) || private_method_defined?(method)
    undef_method(method)
  end
end