You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/21 14:13:37 UTC

[commons-compress] branch master updated: the default options should be final

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new 16a0c84  the default options should be final
16a0c84 is described below

commit 16a0c84e84b93cc8c107b7ff3080bd11317ab581
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Wed Aug 21 16:13:13 2019 +0200

    the default options should be final
---
 .../org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
index 5fcd7f4..c186568 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
@@ -43,7 +43,7 @@ public class SevenZFileOptions {
      *   <li>don't modifiy the name of unnamed entries</li>
      * </ul>
      */
-    public static SevenZFileOptions DEFAULT = new SevenZFileOptions(DEFAUL_MEMORY_LIMIT_IN_KB,
+    public static final SevenZFileOptions DEFAULT = new SevenZFileOptions(DEFAUL_MEMORY_LIMIT_IN_KB,
         DEFAULT_USE_DEFAULTNAME_FOR_UNNAMED_ENTRIES);
 
     /**