1

Any difference between java.util.Collections.synchronizedList() and Apache commons-collections' ListUtils.synchronizedList().

Any reason to prefer one over the other?

Vaiden
  • 15,728
  • 7
  • 61
  • 91

1 Answers1

1

The java doc clearly states,

This method is just a wrapper for Collections.synchronizedList(List).

So no difference.

Adwait Kumar
  • 1,552
  • 10
  • 25