summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Christopher Tate <ctate@google.com> 2014-08-27 18:49:37 -0700
committer Christopher Tate <ctate@google.com> 2014-08-27 18:49:37 -0700
commitcd31d5d9aee277da23365e7e0a96ad359eb68a5f (patch)
treec2a6d1f3b6ca63ad3ccf58a29d2cd8b5b7883cc8
parent162fa7f41b1aa5b3c91b168bc27d1886dec166b1 (diff)
Correct misleading javadoc for BackupHelper
Change-Id: I3865cb3bd55f04baadedb55e9f84fc516eae75b4
-rw-r--r--core/java/android/app/backup/BackupHelper.java7
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)