mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Fixed warnings
This commit is contained in:
parent
1474df79aa
commit
e768dd8f2c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue