1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Fixed warnings

This commit is contained in:
M66B 2021-03-30 18:44:45 +02:00
parent 1474df79aa
commit e768dd8f2c

View file

@ -562,7 +562,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
});
}
private Runnable backup = new Runnable() {
private final Runnable backup = new Runnable() {
@Override
public void run() {
queue.submit(new Runnable() {
@ -595,7 +595,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
Core.NotificationData notificationData = new Core.NotificationData(this);
db.message().liveUnseenNotify().observe(cowner, new Observer<List<TupleMessageEx>>() {
private ExecutorService executor =
private final ExecutorService executor =
Helper.getBackgroundExecutor(1, "notify");
@Override