1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-04 10:39:25 +00:00

Small improvements

This commit is contained in:
M66B 2021-09-22 20:11:46 +02:00
parent d91851f08c
commit 5ef3736f65
2 changed files with 6 additions and 3 deletions

View file

@ -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()));
}

View file

@ -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() {