summaryrefslogtreecommitdiffstats
path: root/keystore
diff options
context:
space:
mode:
authorChia-chi Yeh <chiachi@android.com>2009-09-22 03:04:46 +0800
committerChia-chi Yeh <chiachi@android.com>2009-09-22 03:04:46 +0800
commit613fcc850686dfe71cec9809c3694be9cf02cdc7 (patch)
tree6e7ef01214267a7d8a09ddd50e77c776af7cdcf4 /keystore
parent1f6802295e2dba50a4549b8a22537dcb4c4dda03 (diff)
downloadframeworks_base-613fcc850686dfe71cec9809c3694be9cf02cdc7.zip
frameworks_base-613fcc850686dfe71cec9809c3694be9cf02cdc7.tar.gz
frameworks_base-613fcc850686dfe71cec9809c3694be9cf02cdc7.tar.bz2
KeyStore: rename scan() to saw().
Diffstat (limited to 'keystore')
-rw-r--r--keystore/java/android/security/KeyStore.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/keystore/java/android/security/KeyStore.java b/keystore/java/android/security/KeyStore.java
index b47e399..a47534b 100644
--- a/keystore/java/android/security/KeyStore.java
+++ b/keystore/java/android/security/KeyStore.java
@@ -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;
}