Change order of modifiers

This commit is contained in:
Paul Schaub 2021-08-15 15:42:52 +02:00
parent 09ffd527b5
commit 28f6664b29
1 changed files with 1 additions and 1 deletions

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);
}