Tagged Questions
3
votes
3answers
177 views
Changing a constructor param type breaks class in another jar
I have the following class in a common jar:
public class Common
{
public Common(List list)
{
...
}
}
I then change the constructor parameter from a List to a Collection as follows:
...