Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix concurrent modification error when adding new configuration (#46)
When adding a new configuration file to the directory the taskmanger failed with a concurrent modification error because it tried to remove an observer from the map it was iterating over. Apparently using keySet still keeps a reference to the map. Therefore it's wrapped by a new list.
- Loading branch information