Fix typo in DBHelper

Bug: 6930157
Change-Id: Id98cb1772b3d2d58dcd3098566f1096b10ea66f2
This commit is contained in:
Marc Blank 2012-08-03 12:12:35 -07:00
parent c86cd8fb81
commit cee9881650
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ public final class DBHelper {
+ HostAuthColumns.DOMAIN + " text, "
+ HostAuthColumns.ACCOUNT_KEY + " integer,"
+ HostAuthColumns.CLIENT_CERT_ALIAS + " text,"
+ HostAuthColumns.SERVER_CERT + "blob"
+ HostAuthColumns.SERVER_CERT + " blob"
+ ");";
db.execSQL("create table " + HostAuth.TABLE_NAME + s);
}