
Add more `odeprecated` calls to places that have been deprecated for a while in the wild and move some of the existing `odeprecated` calls to be `odisabled` to allow deleting the compatibility code.
6 lines
70 B
Ruby
6 lines
70 B
Ruby
class Keg
|
|
def fname
|
|
odisabled "Keg#fname", "Keg#name"
|
|
end
|
|
end
|