Description
Since List#remove(int) returns E the implementation in ListOrderedSet should also return E.
Minimal example that fails to compile:
ListOrderedSet<String> los = new ListOrderedSet<String>(); los.add("foo"); String s = los.remove(0);
Since List#remove(int) returns E the implementation in ListOrderedSet should also return E.
Minimal example that fails to compile:
ListOrderedSet<String> los = new ListOrderedSet<String>(); los.add("foo"); String s = los.remove(0);