diff options
author | Scott Main <smain@google.com> | 2010-09-03 13:18:28 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-09-03 13:18:28 -0700 |
commit | bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb (patch) | |
tree | 6f7ba5482799a2e263e437fde12d5cf1f0d33d88 | |
parent | 9eb32c96c872512c8aedc8627a4b96e9ea2a1a28 (diff) | |
parent | 2b136832be7326caed0c79bae418c2dd54372bea (diff) | |
download | frameworks_base-bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb.zip frameworks_base-bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb.tar.gz frameworks_base-bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb.tar.bz2 |
am 2b136832: am c4367e54: fix code snippet error
Merge commit '2b136832be7326caed0c79bae418c2dd54372bea' into gingerbread-plus-aosp
* commit '2b136832be7326caed0c79bae418c2dd54372bea':
fix code snippet error
-rw-r--r-- | docs/html/guide/topics/data/data-storage.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/data/data-storage.jd b/docs/html/guide/topics/data/data-storage.jd index 293a057..e20d1ed 100644 --- a/docs/html/guide/topics/data/data-storage.jd +++ b/docs/html/guide/topics/data/data-storage.jd @@ -115,7 +115,7 @@ public class Calc extends Activity { public static final String PREFS_NAME = "MyPrefsFile"; @Override - protected void onCreate(Bundle state){ + protected void onCreate(Bundle state){ super.onCreate(state); . . . @@ -374,7 +374,7 @@ android.database.sqlite.SQLiteOpenHelper#onCreate(SQLiteDatabase) onCreate()} me can execute a SQLite command to create tables in the database. For example:</p> <pre> -public class MyDbOpenHelper extends SQLiteOpenHelper { +public class DictionaryOpenHelper extends SQLiteOpenHelper { private static final int DATABASE_VERSION = 2; private static final String DICTIONARY_TABLE_NAME = "dictionary"; |