Hi,
I came across a problem with primitive collections that may break source compatibility with existing code.
The Java Collections API Collection#remove(Object) and List#remove(int) are involved.
Say you have this code that you want to refactor to use a primitive collection:
Integer aInt = ... // an integer obtained from somewhere
List list = new ArrayList();.
2007-10-17 20:37:00 UTC in Trove for Java