mehmet-karaman commented on code in PR #634: URL: https://github.com/apache/commons-compress/pull/634#discussion_r1928540411
########## src/main/java/org/apache/commons/compress/archivers/zip/ZipMethod.java: ########## @@ -124,6 +124,14 @@ public enum ZipMethod { */ LZMA(14), + /** + * Compression Method 93 for Zstd. + * + * @see <a href="https://github.com/facebook/zstd">https://github.com/facebook/zstd</a> + * @see <a href="https://www.pkware.com/documents/casestudies/APPNOTE.TXT">Explanation of fields: compression method: (2 bytes)</a> + */ + ZSTD(93), Review Comment: Added also deprecated method id. -- 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. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org