1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-26 22:32:07 +01:00

Change order of modifiers

This commit is contained in:
Paul Schaub 2021-08-15 15:42:52 +02:00
parent 09ffd527b5
commit 28f6664b29

View file

@ -132,7 +132,7 @@ public class KeyRingInfo {
* @param keyId key id
* @return public key or null
*/
public @Nullable static PGPPublicKey getPublicKey(PGPKeyRing keyRing, long keyId) {
public static @Nullable PGPPublicKey getPublicKey(PGPKeyRing keyRing, long keyId) {
return keyRing.getPublicKey(keyId);
}