PeterAlfreadLee commented on a change in pull request #87: COMPRESS-124 : Add support for extracting sparse entries from tar archives URL: https://github.com/apache/commons-compress/pull/87#discussion_r350729147
########## File path: src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java ########## @@ -80,6 +85,9 @@ // the global PAX header private Map<String, String> globalPaxHeaders = new HashMap<>(); + // the global sparse headers, this is only used in PAX Format 0.X + private List<TarArchiveStructSparse> globalSparseHeaders = new ArrayList<>(); + Review comment: Agree. But the HashMap was not created in this PR. I will mark the List as final. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services