diff options
author | Christopher Tate <ctate@google.com> | 2010-04-09 13:05:16 -0700 |
---|---|---|
committer | Christopher Tate <ctate@google.com> | 2010-04-12 14:15:37 -0700 |
commit | fc922f115325371aaadd4e423472476303039a72 (patch) | |
tree | 93a28ff7a19244125fa51959336f38daa56cee76 /core/java/android/app | |
parent | 290a48b365479eccd16023b5de0d92063bb68b4d (diff) | |
download | frameworks_base-fc922f115325371aaadd4e423472476303039a72.zip frameworks_base-fc922f115325371aaadd4e423472476303039a72.tar.gz frameworks_base-fc922f115325371aaadd4e423472476303039a72.tar.bz2 |
API CHANGE: remove obsolete constants and hide some methods
This change removes some unused constants from BackupDataOutput
and hides a few methods that do not actually need to be exposed.
Change-Id: I47a9a107a5b58f4d53b5a2fcf9b73a765b1c5dd8
Diffstat (limited to 'core/java/android/app')
-rw-r--r-- | core/java/android/app/backup/BackupDataOutput.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/java/android/app/backup/BackupDataOutput.java b/core/java/android/app/backup/BackupDataOutput.java index 53b1d46..3767797 100644 --- a/core/java/android/app/backup/BackupDataOutput.java +++ b/core/java/android/app/backup/BackupDataOutput.java @@ -25,9 +25,6 @@ import java.io.IOException; public class BackupDataOutput { int mBackupWriter; - public static final int OP_UPDATE = 1; - public static final int OP_DELETE = 2; - /** @hide */ public BackupDataOutput(FileDescriptor fd) { if (fd == null) throw new NullPointerException(); @@ -71,6 +68,7 @@ public class BackupDataOutput { } } + /** @hide */ public void setKeyPrefix(String keyPrefix) { setKeyPrefix_native(mBackupWriter, keyPrefix); } |