Skip to content

Commit

Permalink
requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shashankiitbhu committed Feb 28, 2024
1 parent 2dd9d83 commit 4d43091
Showing 1 changed file with 7 additions and 3 deletions.
Expand Up @@ -834,7 +834,7 @@ public void setNextDatabaseIdForInserts(int nextId) {
* @deprecated This method affects all calls, and does not work with {@link
* android.content.ContentResolver#acquireContentProviderClient}. Instead, use
* {@link org.robolectric.Robolectric#setupContentProvider(Class, String)} to
* install a test-specific ContentProvider that can return any Cursor.
* install a test-specific ContentProvider that has logic to keep a record of statements.
*/
@Deprecated
@SuppressWarnings({"unused", "WeakerAccess"})
Expand All @@ -851,7 +851,7 @@ public List<Statement> getStatements() {
* @deprecated This method affects all calls, and does not work with {@link
* android.content.ContentResolver#acquireContentProviderClient}. Instead, use
* {@link org.robolectric.Robolectric#setupContentProvider(Class, String)} to
* install a test-specific ContentProvider that can return any Cursor.
* install a test-specific ContentProvider that can record insert statements.
*/
@Deprecated
@SuppressWarnings({"unused", "WeakerAccess"})
Expand All @@ -867,7 +867,7 @@ public List<InsertStatement> getInsertStatements() {
* @deprecated This method affects all calls, and does not work with {@link
* android.content.ContentResolver#acquireContentProviderClient}. Instead, use
* {@link org.robolectric.Robolectric#setupContentProvider(Class, String)} to
* install a test-specific ContentProvider that can return any Cursor.
* install a test-specific ContentProvider that can record update statements.
*/
@Deprecated
@SuppressWarnings({"unused", "WeakerAccess"})
Expand Down Expand Up @@ -903,6 +903,8 @@ public List<DeleteStatement> getDeleteStatements() {
* ContentResolver#notifyChange(Uri, ContentObserver)}.
*
* @return a list of notified URIs
* @deprecated This method affects all calls, and does not work with {@link
* android.content.ContentResolver#acquireContentProviderClient}.
*/
@Deprecated
@SuppressWarnings({"unused", "WeakerAccess"})
Expand All @@ -916,6 +918,8 @@ public List<NotifiedUri> getNotifiedUris() {
* ContentResolver#applyBatch(String, ArrayList)}.
*
* @return a list of content provider operations
* @deprecated This method affects all calls, and does not work with {@link
* android.content.ContentResolver#acquireContentProviderClient}.
*/
@Deprecated
public List<ContentProviderOperation> getContentProviderOperations(String authority) {
Expand Down

0 comments on commit 4d43091

Please sign in to comment.