Description
private static boolean sameKeys(EncryptionKey[] first, EncryptionKey[] next) { if (first.length != next.length) { return false; } for(int k = 0; k < first.length && k < next.length; ++k) { if (!first[k].getKeyName().equals(next[k].getKeyName()) || first[k].getKeyVersion() != next[k].getKeyVersion() || first[k].getAlgorithm() != next[k].getAlgorithm()) { return false; } } return true; }
k < next.length is not necessary
There are five similar codes.
Attachments
Issue Links
- links to