Refactoring

This commit is contained in:
M66B
2019-02-07 19:51:50 +00:00
parent f53a308db3
commit 96dc817a28
4 changed files with 6 additions and 4 deletions

View File

@@ -105,6 +105,8 @@ public class Helper {
static final float LOW_LIGHT = 0.6f;
static final String FAQ_URI = "https://github.com/M66B/open-source-email/blob/master/FAQ.md";
static ThreadFactory backgroundThreadFactory = new ThreadFactory() {
@Override
public Thread newThread(@NonNull Runnable runnable) {
@@ -177,7 +179,7 @@ public class Helper {
static Intent getIntentFAQ() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/FAQ.md"));
intent.setData(Uri.parse(Helper.FAQ_URI));
return intent;
}