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

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