diff options
| author | 2013-08-07 16:43:52 -0700 | |
|---|---|---|
| committer | 2013-08-07 16:43:52 -0700 | |
| commit | 81ea1eed829dd3ae99b8d55aa2f026e5c54409bd (patch) | |
| tree | a2f63a04b62d50a3b057481f614a359b06d2d0dd | |
| parent | 7b60431ba0f69e51b25e5bf92379222d8ef8691b (diff) | |
Doc Change: Fix 10224981 error in code snippet
Change-Id: Ia8193989b0ab08f5b0888a4d3f6823018b48ab18
| -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 |