
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.
11 lines
166 B
Ruby
11 lines
166 B
Ruby
module SharedEnvExtension
|
|
def j1
|
|
odeprecated "ENV.j1", "ENV.deparallelize"
|
|
deparallelize
|
|
end
|
|
|
|
def java_cache
|
|
odeprecated "ENV.java_cache"
|
|
end
|
|
end
|