diff options
| author | 2013-08-08 16:21:55 -0700 | |
|---|---|---|
| committer | 2013-08-08 16:21:55 -0700 | |
| commit | 5f055ea10947f32aba2c2033e0bd5cb689a25be6 (patch) | |
| tree | 03bec770367af9b6b6c306cd06838257b56f005b | |
| parent | 53b9065acf8646ca541c0262dba4f81dd022c626 (diff) | |
| parent | bc8bb009ae7144a81c66aeed985a929dbc4778e7 (diff) | |
am bc8bb009: am 93bb7bf2: am 5986f497: Merge "Doc Change: Fix 10224981 error in code snippet" into jb-mr2-docs
* commit 'bc8bb009ae7144a81c66aeed985a929dbc4778e7':
Doc Change: Fix 10224981 error in code snippet
| -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 ebd7c25a2377..6ec1e1be0244 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 |