Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AnnotationModel uses inefficient iteration over map (Fixes #21)
AnnotationModel.cleanup(boolean, boolean) iterates over map with keyset iterator and does lookup for every value from iterator. With ~10_000 annotations this is not fun anymore. Similar code in other places. That can be improved by using entryset iterator. See https://github.com/eclipse-platform/eclipse.platform.text/issues/21
- Loading branch information