This guy needs also to be marked deprecated to let the compiler know that I
know that it's implementing a deprecated interface method.
This commit is contained in:
@@ -33,7 +33,7 @@ import com.google.common.collect.Lists;
|
|||||||
public class XArrayList<T> extends ArrayList<T>
|
public class XArrayList<T> extends ArrayList<T>
|
||||||
implements XList<T>
|
implements XList<T>
|
||||||
{
|
{
|
||||||
// from interface XList<T>
|
@Deprecated // from interface XList<T>
|
||||||
public <R> Collection<R> map (Function<? super T, ? extends R> mapper)
|
public <R> Collection<R> map (Function<? super T, ? extends R> mapper)
|
||||||
{
|
{
|
||||||
return Lists.transform(this, mapper);
|
return Lists.transform(this, mapper);
|
||||||
|
|||||||
Reference in New Issue
Block a user