I having problems with ConcurrentModificationException when I use a subList.
My question is:
Is safe create a new collection using a subList?
Example:
List<T> list = new LinkedList<T>(someList.subList(0,n));
The result list must to be a independent list of the original list.
Sorry for my english.
If you need the sublist to be modifiable, this is about the easiest way to do it.