diff options
author | Brian Attwell <brianattwell@google.com> | 2015-01-22 20:54:52 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-01-22 20:54:53 +0000 |
commit | 09341baa8ea889c153674b3731cd4851e1c51719 (patch) | |
tree | 4dd9d8ee5573226fe1ae3ab81b9e7646561e4cb2 /core/java | |
parent | a29ce2d47d78fd247cbff8b6a86f193760762118 (diff) | |
parent | 8b89f0b2070e740f96c1b07f37d72f7e530e1a20 (diff) | |
download | frameworks_base-09341baa8ea889c153674b3731cd4851e1c51719.zip frameworks_base-09341baa8ea889c153674b3731cd4851e1c51719.tar.gz frameworks_base-09341baa8ea889c153674b3731cd4851e1c51719.tar.bz2 |
Merge "Revert "Expose ContentProviderOperation type""
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/content/ContentProviderOperation.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/java/android/content/ContentProviderOperation.java b/core/java/android/content/ContentProviderOperation.java index 49ac062..136e54d 100644 --- a/core/java/android/content/ContentProviderOperation.java +++ b/core/java/android/content/ContentProviderOperation.java @@ -208,22 +208,6 @@ public class ContentProviderOperation implements Parcelable { return mType; } - public boolean isInsert() { - return mType == TYPE_INSERT; - } - - public boolean isDelete() { - return mType == TYPE_DELETE; - } - - public boolean isUpdate() { - return mType == TYPE_UPDATE; - } - - public boolean isAssertQuery() { - return mType == TYPE_ASSERT; - } - public boolean isWriteOperation() { return mType == TYPE_DELETE || mType == TYPE_INSERT || mType == TYPE_UPDATE; } |