Remove an index and close the hole. @param index The index of the element to be removed. @return The value that was associated with the index, or null if there was no value.
(int index)
| 777 | * or null if there was no value. |
| 778 | */ |
| 779 | public Object remove(int index) { |
| 780 | Object o = opt(index); |
| 781 | this.myArrayList.remove(index); |
| 782 | return o; |
| 783 | } |
| 784 | |
| 785 | |
| 786 | /** |
no test coverage detected