Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Adding domain names for Chinese keyboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
daoshengmu committed Jun 24, 2020
1 parent 56747c4 commit f3c82e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -485,4 +485,9 @@ public DBHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
}

@Override
public String[] getDomains(String... domains) {
return super.getDomains(".cn");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -480,4 +480,9 @@ public DBPhraseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
}

@Override
public String[] getDomains(String... domains) {
return super.getDomains(".tw");
}
}

0 comments on commit f3c82e4

Please sign in to comment.