[ 
https://issues.apache.org/jira/browse/HADOOP-17152?focusedWorklogId=604427&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-604427
 ]

ASF GitHub Bot logged work on HADOOP-17152:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 01/Jun/21 10:28
            Start Date: 01/Jun/21 10:28
    Worklog Time Spent: 10m 
      Work Description: virajjasani commented on pull request #3061:
URL: https://github.com/apache/hadoop/pull/3061#issuecomment-852014244


   Thanks for the review @bogthe. I understand about providing comments for 
immutable alternatives but specifically in the case of `List`, Hadoop does not 
require any. I have checked code in all modules and hence decided to remove 
info about immutable lists in comments.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 604427)
    Time Spent: 0.5h  (was: 20m)

> Implement wrapper for guava newArrayList and newLinkedList
> ----------------------------------------------------------
>
>                 Key: HADOOP-17152
>                 URL: https://issues.apache.org/jira/browse/HADOOP-17152
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: common
>            Reporter: Ahmed Hussein
>            Assignee: Viraj Jasani
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> guava Lists class provide some wrappers to java ArrayList and LinkedList.
> Replacing the method calls throughout the code can be invasive because guava 
> offers some APIs that do not exist in java util. This Jira is the task of 
> implementing those missing APIs in hadoop common in a step toward getting rid 
> of guava.
>  * create a wrapper class org.apache.hadoop.util.unguava.ListsĀ 
>  * implement the following interfaces in Lists:
>  ** public static <E> ArrayList<E> newArrayList()
>  ** public static <E> ArrayList<E> newArrayList(E... elements)
>  ** public static <E> ArrayList<E> newArrayList(Iterable<? extends E> 
> elements)
>  ** public static <E> ArrayList<E> newArrayList(Iterator<? extends E> 
> elements)
>  ** public static <E> ArrayList<E> newArrayListWithCapacity(int 
> initialArraySize)
>  ** public static <E> LinkedList<E> newLinkedList()
>  ** public static <E> LinkedList<E> newLinkedList(Iterable<? extends E> 
> elements)
>  ** public static <E> List<E> asList(@Nullable E first, E[] rest)



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to