Skip to content

Commit 572c815

Browse files
committed
Add clarification that arguments are swapped on purpose
1 parent e08be8a commit 572c815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pg/src/main/java/org/bouncycastle/openpgp/api/OpenPGPCertificate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3235,8 +3235,8 @@ private Date getBackSigExpirationTime()
32353235
{
32363236
OpenPGPComponentSignature backSig = new OpenPGPComponentSignature(
32373237
embeddedSigs.get(0),
3238-
getSignature().getTargetKeyComponent(),
3239-
getSignature().getIssuer());
3238+
/* issuer= */getSignature().getTargetKeyComponent(),
3239+
/* target= */getSignature().getIssuer());
32403240
return backSig.getExpirationTime();
32413241
}
32423242
return null;

0 commit comments

Comments
 (0)