From 81ea1eed829dd3ae99b8d55aa2f026e5c54409bd Mon Sep 17 00:00:00 2001 From: Joe Malin Date: Wed, 7 Aug 2013 16:43:52 -0700 Subject: Doc Change: Fix 10224981 error in code snippet Change-Id: Ia8193989b0ab08f5b0888a4d3f6823018b48ab18 --- docs/html/guide/topics/providers/content-provider-creating.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/html/guide') 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 -- cgit v1.1