diff options
| author | 2014-08-28 20:52:08 +0000 | |
|---|---|---|
| committer | 2014-08-28 20:53:36 +0000 | |
| commit | a43e2409ad61e77b8a0dd707c96cdf2ce552077d (patch) | |
| tree | 08b05026d5e291ec9daefc09c43f4f66e9631084 | |
| parent | 12b500959dba868202d703be71df620ea0814ccb (diff) | |
| parent | cd31d5d9aee277da23365e7e0a96ad359eb68a5f (diff) | |
Merge "Correct misleading javadoc for BackupHelper" into lmp-dev
| -rw-r--r-- | core/java/android/app/backup/BackupHelper.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/java/android/app/backup/BackupHelper.java b/core/java/android/app/backup/BackupHelper.java index e3f0d54bc1a1..7cbbbc307f7f 100644 --- a/core/java/android/app/backup/BackupHelper.java +++ b/core/java/android/app/backup/BackupHelper.java @@ -37,10 +37,9 @@ import android.os.ParcelFileDescriptor; */ public interface BackupHelper { /** - * Based on <code>oldState</code>, determine which of the files from the - * application's data directory need to be backed up, write them to - * <code>data</code>, and fill in <code>newState</code> with the state as it - * exists now. + * Based on <code>oldState</code>, determine what application content + * needs to be backed up, write it to <code>data</code>, and fill in + * <code>newState</code> with the complete state as it exists now. * <p> * Implementing this method is much like implementing * {@link BackupAgent#onBackup(ParcelFileDescriptor, BackupDataOutput, ParcelFileDescriptor) |