diff options
author | Fred Quintana <fredq@google.com> | 2009-10-07 11:55:10 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-07 11:55:10 -0700 |
commit | 6c0af3b2453ae25fb08fda966c4701b37a86960d (patch) | |
tree | bb138ee700cabf14989f0eb03c3c3b4b12192906 /test-runner | |
parent | 1d16200eefd1ce9d47fde70625fc3f4812c0d361 (diff) | |
parent | 5bba632d877c2878384ff21566c8eb6a1a22f37b (diff) | |
download | frameworks_base-6c0af3b2453ae25fb08fda966c4701b37a86960d.zip frameworks_base-6c0af3b2453ae25fb08fda966c4701b37a86960d.tar.gz frameworks_base-6c0af3b2453ae25fb08fda966c4701b37a86960d.tar.bz2 |
am 5bba632d: - hide Entity and all its references - remove updateEntity and insertEntity, since they are not used - add the RawContacts.Entity class, which is used in lieu of the android.content.Entity
Merge commit '5bba632d877c2878384ff21566c8eb6a1a22f37b' into eclair-plus-aosp
* commit '5bba632d877c2878384ff21566c8eb6a1a22f37b':
- hide Entity and all its references
Diffstat (limited to 'test-runner')
-rw-r--r-- | test-runner/android/test/mock/MockContentProvider.java | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test-runner/android/test/mock/MockContentProvider.java b/test-runner/android/test/mock/MockContentProvider.java index 74f86d8..c3fe9c0 100644 --- a/test-runner/android/test/mock/MockContentProvider.java +++ b/test-runner/android/test/mock/MockContentProvider.java @@ -53,10 +53,6 @@ public class MockContentProvider implements IContentProvider { return 0; } - public Uri insertEntity(Uri uri, Entity entities) throws RemoteException { - throw new UnsupportedOperationException("unimplemented mock method"); - } - @SuppressWarnings("unused") public IBulkCursor bulkQuery(Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder, IContentObserver observer, @@ -103,6 +99,9 @@ public class MockContentProvider implements IContentProvider { throw new UnsupportedOperationException("unimplemented mock method"); } + /** + * @hide + */ public EntityIterator queryEntities(Uri url, String selection, String[] selectionArgs, String sortOrder) throws RemoteException { throw new UnsupportedOperationException("unimplemented mock method"); @@ -114,10 +113,6 @@ public class MockContentProvider implements IContentProvider { throw new UnsupportedOperationException("unimplemented mock method"); } - public int updateEntity(Uri uri, Entity entity) throws RemoteException { - throw new UnsupportedOperationException("unimplemented mock method"); - } - public IBinder asBinder() { throw new UnsupportedOperationException("unimplemented mock method"); } |