newCryptos() 수정

master
mjkhan21 10 months ago
parent aa6b2cc3e8
commit c5b72e1160

@ -347,9 +347,9 @@ public abstract class Cryptography extends AbstractComponent {
} }
public List<Cryptography> newCryptos() { public List<Cryptography> newCryptos() {
return getCryptoDefs(null).stream() return enabled ? getCryptoDefs(null).stream()
.map(CryptoDef::newCrypto) .map(CryptoDef::newCrypto)
.toList(); .toList() : Collections.emptyList();
} }
} }
} }
Loading…
Cancel
Save