diff options
author | Joe Malin <jmalin@google.com> | 2013-08-07 16:43:52 -0700 |
---|---|---|
committer | Joe Malin <jmalin@google.com> | 2013-08-07 16:43:52 -0700 |
commit | 81ea1eed829dd3ae99b8d55aa2f026e5c54409bd (patch) | |
tree | a2f63a04b62d50a3b057481f614a359b06d2d0dd /docs/html/guide/topics | |
parent | 7b60431ba0f69e51b25e5bf92379222d8ef8691b (diff) | |
download | frameworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.zip frameworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.tar.gz frameworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.tar.bz2 |
Doc Change: Fix 10224981 error in code snippet
Change-Id: Ia8193989b0ab08f5b0888a4d3f6823018b48ab18
Diffstat (limited to 'docs/html/guide/topics')
-rw-r--r-- | docs/html/guide/topics/providers/content-provider-creating.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/providers/content-provider-creating.jd b/docs/html/guide/topics/providers/content-provider-creating.jd index ebd7c25..6ec1e1b 100644 --- a/docs/html/guide/topics/providers/content-provider-creating.jd +++ b/docs/html/guide/topics/providers/content-provider-creating.jd @@ -680,7 +680,7 @@ public class ExampleProvider extends ContentProvider * Notice that the database itself isn't created or opened * until SQLiteOpenHelper.getWritableDatabase is called */ - mOpenHelper = new SQLiteOpenHelper( + mOpenHelper = new MainDatabaseHelper( getContext(), // the application context DBNAME, // the name of the database) null, // uses the default SQLite cursor |