Skip to content

Commit

Permalink
#421 Remove clone method
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanth-lingala committed Apr 15, 2022
1 parent fc3a258 commit 27181c6
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/main/java/net/lingala/zip4j/model/ZipParameters.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@

package net.lingala.zip4j.model;

import net.lingala.zip4j.model.enums.AesKeyStrength;
import net.lingala.zip4j.model.enums.AesVersion;
import net.lingala.zip4j.model.enums.CompressionLevel;
import net.lingala.zip4j.model.enums.CompressionMethod;
import net.lingala.zip4j.model.enums.EncryptionMethod;
import net.lingala.zip4j.model.enums.*;

/**
* Encapsulates the parameters that that control how Zip4J encodes data
Expand Down Expand Up @@ -204,10 +200,6 @@ public void setReadHiddenFolders(boolean readHiddenFolders) {
this.readHiddenFolders = readHiddenFolders;
}

public Object clone() throws CloneNotSupportedException {
return super.clone();
}

/**
* Get the key strength of the AES encryption key
* @return the key strength of the AES encryption key
Expand Down

0 comments on commit 27181c6

Please sign in to comment.