mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 01:08:50 -06:00
MemoryHabitList: iterate over a copy of the list
This commit is contained in:
@@ -164,7 +164,7 @@ public class MemoryHabitList extends HabitList
|
|||||||
@Override
|
@Override
|
||||||
public synchronized Iterator<Habit> iterator()
|
public synchronized Iterator<Habit> iterator()
|
||||||
{
|
{
|
||||||
return Collections.unmodifiableCollection(list).iterator();
|
return new ArrayList<>(list).iterator();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user