Unnecessary enum modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:07 +02:00
parent 8d0ca14e55
commit 40bee457f9
7 changed files with 9 additions and 9 deletions

View File

@@ -65,7 +65,7 @@ public final class AesBytesEncryptor implements BytesEncryptor {
private BytesKeyGenerator ivGenerator;
private String name;
private CipherAlgorithm(String name, BytesKeyGenerator ivGenerator) {
CipherAlgorithm(String name, BytesKeyGenerator ivGenerator) {
this.name = name;
this.ivGenerator = ivGenerator;
}