mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-11 03:24:52 +02:00
Small improvements
This commit is contained in:
@@ -2214,6 +2214,7 @@ public class Log {
|
||||
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
|
||||
for (SimpleTask task : SimpleTask.getList())
|
||||
size += write(os, String.format("%s\r\n", task.toString()));
|
||||
size += write(os, "\r\n");
|
||||
for (TwoStateOwner owner : TwoStateOwner.getList())
|
||||
size += write(os, String.format("%s\r\n", owner.toString()));
|
||||
}
|
||||
|
||||
@@ -45,10 +45,12 @@ public class TwoStateOwner implements LifecycleOwner {
|
||||
|
||||
private static DateFormat DTF = SimpleDateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
|
||||
|
||||
private static List<TwoStateOwner> list = new ArrayList<>();
|
||||
private static final List<TwoStateOwner> list = new ArrayList<>();
|
||||
|
||||
static List<TwoStateOwner> getList() {
|
||||
return list;
|
||||
synchronized (list) {
|
||||
return new ArrayList<>(list);
|
||||
}
|
||||
}
|
||||
|
||||
// https://developer.android.com/topic/libraries/architecture/lifecycle#lc
|
||||
@@ -91,7 +93,7 @@ public class TwoStateOwner implements LifecycleOwner {
|
||||
list.add(this);
|
||||
}
|
||||
} else
|
||||
Log.i(this + " not owned");
|
||||
Log.e(this + " not owned");
|
||||
}
|
||||
|
||||
void start() {
|
||||
|
||||
Reference in New Issue
Block a user