Skip to content

Commit

Permalink
SHIBUI-2550 correcting files
Browse files Browse the repository at this point in the history
  • Loading branch information
chasegawa authored and credman committed Apr 11, 2023
1 parent 4e0e8aa commit 74df5d7
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,13 @@ public List<AgreementMethod> getAgreementMethods() {
@Nonnull
@Override
public List<EncryptedKey> getEncryptedKeys() {
return Collections.emptyList();
ArrayList<EncryptedKey> result = new ArrayList<>();
for (XMLObject obj : getXMLObjects()) {
if (obj instanceof EncryptedKey) {
result.add((EncryptedKey) obj);
}
}
return result;
}

@Nullable
Expand Down

0 comments on commit 74df5d7

Please sign in to comment.