This commit is contained in:
Max Dor
2019-04-05 21:56:05 +02:00
parent 9abdcc15ba
commit 6bb0c93f57

View File

@@ -36,7 +36,7 @@ public class GenericKeyIdentifier implements KeyIdentifier {
public GenericKeyIdentifier(KeyType type, String algo, String serial) {
if (StringUtils.isAnyBlank(algo, serial)) {
throw new IllegalArgumentException("Aglorith and/or Serial cannot be blank");
throw new IllegalArgumentException("Algorithm and/or Serial cannot be blank");
}
this.type = Objects.requireNonNull(type);