class Chef::Mixin::ParamsValidate::SetOrReturnProperty

Public Instance Methods

_original_get2(resource, *args)

12.9 introduced a new optional parameter to `get()` to avoid a nil-set warning. When their method gets called with 2 args, we need to ignore and call with 1.

Alias for: get
get(resource, *args) click to toggle source
# File files/lib/chef_compat/monkeypatches/chef/mixin/params_validate.rb, line 10
def get(resource, *args)
  _original_get2(resource)
end
Also aliased as: _original_get2