diff options
author | Scott Main <smain@google.com> | 2010-09-03 13:28:18 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-09-03 13:28:18 -0700 |
commit | 8ae409f50156394b517a86a8d171938e0aa32897 (patch) | |
tree | aa5be71bf3c58ac7c3acd101c7073861500f2212 /docs | |
parent | 4f3c5589c8cfa797153d50aaff68eaf874048a9c (diff) | |
parent | bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb (diff) | |
download | frameworks_base-8ae409f50156394b517a86a8d171938e0aa32897.zip frameworks_base-8ae409f50156394b517a86a8d171938e0aa32897.tar.gz frameworks_base-8ae409f50156394b517a86a8d171938e0aa32897.tar.bz2 |
am bfbf84b7: am 2b136832: am c4367e54: fix code snippet error
Merge commit 'bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb'
* commit 'bfbf84b7265310d154f8dc9e0b1e85b2a56bdfcb':
fix code snippet error
Diffstat (limited to 'docs')
-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"; |