2
2
3
3
import java .io .IOException ;
4
4
import java .util .ArrayList ;
5
+ import java .util .Arrays ;
5
6
import java .util .Date ;
6
7
import java .util .List ;
7
8
@@ -56,10 +57,7 @@ public PGPSignatureSubpacketGenerator(PGPSignatureSubpacketVector sigSubV)
56
57
{
57
58
if (sigSubV != null )
58
59
{
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 ));
63
61
}
64
62
}
65
63
@@ -651,9 +649,9 @@ public boolean removePacketsOfType(int subpacketType)
651
649
public boolean hasSubpacket (
652
650
int type )
653
651
{
654
- for (int i = 0 ; i != packets . size (); i ++ )
652
+ for (SignatureSubpacket packet : packets )
655
653
{
656
- if ((( SignatureSubpacket ) packets . get ( i )) .getType () == type )
654
+ if (packet .getType () == type )
657
655
{
658
656
return true ;
659
657
}
@@ -672,30 +670,30 @@ public boolean hasSubpacket(
672
670
public SignatureSubpacket [] getSubpackets (
673
671
int type )
674
672
{
675
- List list = new ArrayList ();
673
+ List < SignatureSubpacket > list = new ArrayList <> ();
676
674
677
- for (int i = 0 ; i != packets . size (); i ++ )
675
+ for (SignatureSubpacket packet : packets )
678
676
{
679
- if ((( SignatureSubpacket ) packets . get ( i )) .getType () == type )
677
+ if (packet .getType () == type )
680
678
{
681
- list .add (packets . get ( i ) );
679
+ list .add (packet );
682
680
}
683
681
}
684
682
685
- return ( SignatureSubpacket []) list .toArray (new SignatureSubpacket []{} );
683
+ return list .toArray (new SignatureSubpacket [0 ] );
686
684
}
687
685
688
686
public PGPSignatureSubpacketVector generate ()
689
687
{
690
688
return new PGPSignatureSubpacketVector (
691
- ( SignatureSubpacket []) packets .toArray (new SignatureSubpacket [packets . size () ]));
689
+ packets .toArray (new SignatureSubpacket [0 ]));
692
690
}
693
691
694
692
private boolean contains (int type )
695
693
{
696
- for (int i = 0 ; i < packets . size (); ++ i )
694
+ for (SignatureSubpacket packet : packets )
697
695
{
698
- if ((( SignatureSubpacket ) packets . get ( i )) .getType () == type )
696
+ if (packet .getType () == type )
699
697
{
700
698
return true ;
701
699
}
0 commit comments