Re: updating the interface for a module or java file..

2019-09-13 Thread Tim Boudreau
The approach NetBeans has used for that historically has been to remove the thing in question, and then use build-time bytecode patching to put it back, so it no longer appears in documentation, but existing code that depends on it will not be broken. -Tim

Re: updating the interface for a module or java file..

2019-09-12 Thread Matthias Bläsing
Hi Brad, Am Mittwoch, den 11.09.2019, 13:46 -0600 schrieb Brad Walker: > Let's say that I've cleaned up all references to a deprecated method. > > Now I want to remove the deprecated method since no one is using it. > > Don't I have to update the interface definition? And if so, how does one go

updating the interface for a module or java file..

2019-09-11 Thread Brad Walker
Let's say that I've cleaned up all references to a deprecated method. Now I want to remove the deprecated method since no one is using it. Don't I have to update the interface definition? And if so, how does one go about doing this? Thanks. -brad w.