diff options
Diffstat (limited to 'core/java/android/content/AbstractSyncableContentProvider.java')
-rw-r--r-- | core/java/android/content/AbstractSyncableContentProvider.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/AbstractSyncableContentProvider.java b/core/java/android/content/AbstractSyncableContentProvider.java index 05781f4..e628dcd 100644 --- a/core/java/android/content/AbstractSyncableContentProvider.java +++ b/core/java/android/content/AbstractSyncableContentProvider.java @@ -406,7 +406,7 @@ public abstract class AbstractSyncableContentProvider extends SyncableContentPro * } * </pre> * - * @hide This method should be used only when {@link #applyBatch} is not enough and must be + * @hide This method should be used only when {@link ContentProvider#applyBatch} is not enough and must be * used with {@link #endBatch}. * e.g. If returned value has to be used during one transaction, this method might be useful. */ @@ -461,7 +461,7 @@ public abstract class AbstractSyncableContentProvider extends SyncableContentPro } } - public ContentProviderResult[] applyBatch(ContentProviderOperation[] operations) + public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) throws OperationApplicationException { boolean successful = false; beginBatch(); |