Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3578d60 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 26190 into eclair

* changes:
  KeyStore: rename scan() to saw().
parents e045e129 613fcc85
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -92,12 +92,12 @@ public class KeyStore {
        return contains(key.getBytes());
    }

    public byte[][] scan(byte[] prefix) {
    public byte[][] saw(byte[] prefix) {
        return execute('s', prefix);
    }

    public String[] scan(String prefix) {
        byte[][] values = scan(prefix.getBytes());
    public String[] saw(String prefix) {
        byte[][] values = saw(prefix.getBytes());
        if (values == null) {
            return null;
        }