am b9e3e4ce: Merge "API CHANGE: remove obsolete constants and hide some methods" into froyo

Merge commit 'b9e3e4ce7e8e57a28ce15680d406c83cba1eb63a' into froyo-plus-aosp

* commit 'b9e3e4ce7e8e57a28ce15680d406c83cba1eb63a':
  API CHANGE: remove obsolete constants and hide some methods
This commit is contained in:
Christopher Tate
2010-04-12 15:16:07 -07:00
committed by Android Git Automerger
2 changed files with 1 additions and 38 deletions

View File

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