Merge change 26190 into eclair

* changes:
  KeyStore: rename scan() to saw().
This commit is contained in:
Android (Google) Code Review
2009-09-21 15:06:18 -04:00

View File

@@ -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;
}