Skip to content
Snippets Groups Projects
Unverified Commit c977bf04 authored by akwizgran's avatar akwizgran
Browse files

Removed overrides of showScreenFilterWarning.

parent f3a084cf
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,6 @@ public class StartupFailureActivity extends BaseActivity {
}
@Override
protected void showScreenFilterWarning() {
// Don't show here, service might not be available
}
private void handleIntent(Intent i) {
StartResult result = (StartResult) i.getSerializableExtra("briar.START_RESULT");
int notificationId = i.getIntExtra("briar.FAILURE_NOTIFICATION_ID", -1);
......
......@@ -113,7 +113,7 @@ public abstract class BaseActivity extends AppCompatActivity
}
}
protected void showScreenFilterWarning() {
private void showScreenFilterWarning() {
if (dialogFrag != null && dialogFrag.isVisible()) return;
Set<String> apps = screenFilterMonitor.getApps();
if (apps.isEmpty()) return;
......
......@@ -83,11 +83,6 @@ public class SplashScreenActivity extends BaseActivity {
}
}
@Override
protected void showScreenFilterWarning() {
// Ignore touches until the next activity is shown
}
private void enableStrictMode() {
if (TESTING) {
ThreadPolicy.Builder threadPolicy = new ThreadPolicy.Builder();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment