am e3578d60: Merge change 26190 into eclair

Merge commit 'e3578d60c6fbe17c116048a6b4de60b0ac42961f' into eclair-plus-aosp

* commit 'e3578d60c6fbe17c116048a6b4de60b0ac42961f':
  KeyStore: rename scan() to saw().
This commit is contained in:
Chia-chi Yeh
2009-09-21 12:45:58 -07:00
committed by Android Git Automerger

View File

@@ -92,12 +92,12 @@ public class KeyStore {
return contains(key.getBytes()); return contains(key.getBytes());
} }
public byte[][] scan(byte[] prefix) { public byte[][] saw(byte[] prefix) {
return execute('s', prefix); return execute('s', prefix);
} }
public String[] scan(String prefix) { public String[] saw(String prefix) {
byte[][] values = scan(prefix.getBytes()); byte[][] values = saw(prefix.getBytes());
if (values == null) { if (values == null) {
return null; return null;
} }