Re: Remove usages of deprecated classes

2019-01-07 Thread Michael Stolz
Good points, Ken. I do think it is wise for us to begin a push to remove *USAGE* of deprecated methods right at the time of deprecation, but the tests probably should hang around until we're getting into the planning phase for the next major. -- Mike Stolz Principal Engineer, GemFire Product Lead

Re: Remove usages of deprecated classes

2019-01-02 Thread Ken Howe
I agree that we have too many uses of code deprecated in our own code base. I also agree with the idea that we should not introduce new usages of deprecated classes. So if someone is modifying a class that uses deprecated classes, should the deprecations be refactored out or is it OK to leave th

Remove usages of deprecated classes

2019-01-02 Thread Peter Tran
Hello Geode Dev, As a new contributor reviewing PRs I've learnt that it's acceptable to make a PR that continues to use deprecated classes but not okay to introduce the usage of a deprecated class. I wonder if there should be a systematic way to remove the usage of deprecated classes. I'm concern