Skip to content

Commit 1008aef

Browse files
committed
<> clean up
1 parent 4103add commit 1008aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pg/src/main/java/org/bouncycastle/openpgp/PGPPublicKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public PGPPublicKey(PublicKeyPacket publicKeyPacket, KeyFingerPrintCalculator fi
178178
this.idSigs = new ArrayList<List<PGPSignature>>(pubKey.idSigs.size());
179179
for (int i = 0; i != pubKey.idSigs.size(); i++)
180180
{
181-
this.idSigs.add(new ArrayList<>(pubKey.idSigs.get(i)));
181+
this.idSigs.add(new ArrayList<PGPSignature>(pubKey.idSigs.get(i)));
182182
}
183183

184184
if (pubKey.subSigs != null)

0 commit comments

Comments
 (0)