parent
1beed21032
commit
5b788fe188
2 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ public class CanonicalAddressDatabase {
|
||||||
public static CanonicalAddressDatabase getInstance(Context context) {
|
public static CanonicalAddressDatabase getInstance(Context context) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
if (instance == null)
|
if (instance == null)
|
||||||
instance = new CanonicalAddressDatabase(context);
|
instance = new CanonicalAddressDatabase(context.getApplicationContext());
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
@ -69,7 +69,7 @@ public class CanonicalAddressDatabase {
|
||||||
|
|
||||||
public void reset(Context context) {
|
public void reset(Context context) {
|
||||||
DatabaseHelper old = this.databaseHelper;
|
DatabaseHelper old = this.databaseHelper;
|
||||||
this.databaseHelper = new DatabaseHelper(context, DATABASE_NAME, null, DATABASE_VERSION);
|
this.databaseHelper = new DatabaseHelper(context.getApplicationContext(), DATABASE_NAME, null, DATABASE_VERSION);
|
||||||
old.close();
|
old.close();
|
||||||
fillCache();
|
fillCache();
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ public class DatabaseFactory {
|
||||||
public static DatabaseFactory getInstance(Context context) {
|
public static DatabaseFactory getInstance(Context context) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
if (instance == null)
|
if (instance == null)
|
||||||
instance = new DatabaseFactory(context);
|
instance = new DatabaseFactory(context.getApplicationContext());
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue