mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-18 02:12:06 +01:00
Add missing break statement to loop
This commit is contained in:
parent
194e4d7631
commit
9a8bb7d3ef
1 changed files with 1 additions and 0 deletions
|
@ -625,6 +625,7 @@ public class SecretKeyRingEditor implements SecretKeyRingEditorInterface {
|
||||||
for (PGPSecretKey secKey : secretKeys) {
|
for (PGPSecretKey secKey : secretKeys) {
|
||||||
if (secKey.getS2KUsage() == SecretKeyPacket.USAGE_CHECKSUM) {
|
if (secKey.getS2KUsage() == SecretKeyPacket.USAGE_CHECKSUM) {
|
||||||
hasS2KUsageChecksum = true;
|
hasS2KUsageChecksum = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (hasS2KUsageChecksum) {
|
if (hasS2KUsageChecksum) {
|
||||||
|
|
Loading…
Reference in a new issue