mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-23 03:17:58 +01:00
Rename method to getValidAndExpiredUserIds()
This commit is contained in:
parent
56e60e88f4
commit
6c9c683c85
2 changed files with 2 additions and 2 deletions
|
@ -340,7 +340,7 @@ public class KeyRingInfo {
|
|||
*
|
||||
* @return bound user-ids
|
||||
*/
|
||||
public List<String> getBoundButPossiblyExpiredUserIds() {
|
||||
public List<String> getValidAndExpiredUserIds() {
|
||||
List<String> probablyExpired = new ArrayList<>();
|
||||
List<String> userIds = getUserIds();
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@ public class SecretKeyRingEditor implements SecretKeyRingEditorInterface {
|
|||
|
||||
// unmark previous primary user-ids to be non-primary
|
||||
info = PGPainless.inspectKeyRing(secretKeyRing);
|
||||
for (String otherUserId : info.getBoundButPossiblyExpiredUserIds()) {
|
||||
for (String otherUserId : info.getValidAndExpiredUserIds()) {
|
||||
if (userId.toString().equals(otherUserId)) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue