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:
Michael Bayne
2010-02-23 08:54:54 +00:00
parent 54b7bf9e99
commit e251cd9944
@@ -33,7 +33,7 @@ import com.google.common.collect.Lists;
public class XArrayList<T> extends ArrayList<T>
implements XList<T>
{
// from interface XList<T>
@Deprecated // from interface XList<T>
public <R> Collection<R> map (Function<? super T, ? extends R> mapper)
{
return Lists.transform(this, mapper);