Reputation: 16122
Any difference between java.util.Collections.synchronizedList() and Apache commons-collections' ListUtils.synchronizedList().
Any reason to prefer one over the other?
Upvotes: 1
Views: 426
Reputation: 1604
The java doc clearly states,
This method is just a wrapper for
Collections.synchronizedList(List)
.
So no difference.
Upvotes: 1