Merge pull request #7166 from imperatorx/keyarrayresult-add-getter

Update KeyArrayResult.java
This commit is contained in:
Alec Grieser 2022-05-16 14:03:24 -07:00 committed by GitHub
commit 940ca2c6b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -41,4 +41,8 @@ public class KeyArrayResult {
keys.add(key);
}
}
public List<byte[]> getKeys() {
return keys;
}
}