Tagged Questions
4
votes
2answers
200 views
Refactored methods and binary compatibility in Java
When refactoring methods it is easy to introduce binary incompabilities (with previous versions of the code) in Java.
Consider changing a method to widen the type of its parameter to a parent ...
2
votes
3answers
89 views
Does removing an interface break code calling methods on the object?
I need to do some refactoring in Java, and I need to maintain some degree of binary compatibility. In this case I want to remove some legacy interfaces, that are not used anywhere anymore and which ...