Makes the encryption style default to substitution
This commit is contained in:
parent
e1d1ff83b4
commit
c29075511e
@ -5,7 +5,7 @@ package net.knarcraft.bookswithoutborders.state;
|
|||||||
*/
|
*/
|
||||||
public enum EncryptionStyle {
|
public enum EncryptionStyle {
|
||||||
DNA("dna"),
|
DNA("dna"),
|
||||||
SUBSTITUTION("");
|
SUBSTITUTION("substitution");
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
||||||
@ -25,6 +25,6 @@ public enum EncryptionStyle {
|
|||||||
return style;
|
return style;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return SUBSTITUTION;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user