Skip to content

Commit c34c9d3

Browse files
committed
Refactore PGPSignatureSubpacketGenerator
1 parent 12d4b17 commit c34c9d3

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

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

+12-14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import java.io.IOException;
44
import java.util.ArrayList;
5+
import java.util.Arrays;
56
import java.util.Date;
67
import java.util.List;
78

@@ -56,10 +57,7 @@ public PGPSignatureSubpacketGenerator(PGPSignatureSubpacketVector sigSubV)
5657
{
5758
if (sigSubV != null)
5859
{
59-
for (int i = 0; i != sigSubV.packets.length; i++)
60-
{
61-
packets.add(sigSubV.packets[i]);
62-
}
60+
packets.addAll(Arrays.asList(sigSubV.packets));
6361
}
6462
}
6563

@@ -651,9 +649,9 @@ public boolean removePacketsOfType(int subpacketType)
651649
public boolean hasSubpacket(
652650
int type)
653651
{
654-
for (int i = 0; i != packets.size(); i++)
652+
for (SignatureSubpacket packet : packets)
655653
{
656-
if (((SignatureSubpacket)packets.get(i)).getType() == type)
654+
if (packet.getType() == type)
657655
{
658656
return true;
659657
}
@@ -672,30 +670,30 @@ public boolean hasSubpacket(
672670
public SignatureSubpacket[] getSubpackets(
673671
int type)
674672
{
675-
List list = new ArrayList();
673+
List<SignatureSubpacket> list = new ArrayList<>();
676674

677-
for (int i = 0; i != packets.size(); i++)
675+
for (SignatureSubpacket packet : packets)
678676
{
679-
if (((SignatureSubpacket)packets.get(i)).getType() == type)
677+
if (packet.getType() == type)
680678
{
681-
list.add(packets.get(i));
679+
list.add(packet);
682680
}
683681
}
684682

685-
return (SignatureSubpacket[])list.toArray(new SignatureSubpacket[]{});
683+
return list.toArray(new SignatureSubpacket[0]);
686684
}
687685

688686
public PGPSignatureSubpacketVector generate()
689687
{
690688
return new PGPSignatureSubpacketVector(
691-
(SignatureSubpacket[])packets.toArray(new SignatureSubpacket[packets.size()]));
689+
packets.toArray(new SignatureSubpacket[0]));
692690
}
693691

694692
private boolean contains(int type)
695693
{
696-
for (int i = 0; i < packets.size(); ++i)
694+
for (SignatureSubpacket packet : packets)
697695
{
698-
if (((SignatureSubpacket)packets.get(i)).getType() == type)
696+
if (packet.getType() == type)
699697
{
700698
return true;
701699
}

0 commit comments

Comments
 (0)