Removes the first occurrence of the specified element from this list,
if it is present. If this list does not contain the element, it is
unchanged. More formally, removes the element with the lowest index
{@code i} such that
<tt>(o==null ? get(i)==null : o.equals(get(i)))</tt>
(if such an element exists). Returns {@code true} if this list
contained the specified element (or equivalently, if this list
changed as a result of the call).
@param o element to be removed from this list, if present
@return {@code true} if this list contained the specified element
Removes the first occurrence of the specified element from this list, if it is present. If this list does not contain the element, it is unchanged. More formally, removes the element with the lowest index {@code i} such that <tt>(o==null ? get(i)==null : o.equals(get(i)))</tt> (if such an element exists). Returns {@code true} if this list contained the specified element (or equivalently, if this list changed as a result of the call).
@param o element to be removed from this list, if present @return {@code true} if this list contained the specified element