If I currently select "Clean all projects" the error markers remains visible until the responsible builder starts the project and removes and updates the markers.
New markers arrive in the problems views and mix with the old outdated markers because the Problems view updates in real-time.
In case we select "Clean all projects", we could delete all markers before the builder gets active. This would allow the user to looks at the valid problem markers which are created during the build without having to guess which one of the other problem markers are still valid.
Especially useful for builds which take a long time, for example one of my clients has a build of approx. 20 minutes for his workspace (and due to strange IDE behavior feels that he has to do a full clean build from time to time).
Batch deletion of markers is very efficient AFAIK, e.g.,
workspace.run(m-> {
projects.deleteMarkers(null, true, IResource.DEPTH_INFINITE);
}, null);
If I currently select "Clean all projects" the error markers remains visible until the responsible builder starts the project and removes and updates the markers.
New markers arrive in the problems views and mix with the old outdated markers because the Problems view updates in real-time.
In case we select "Clean all projects", we could delete all markers before the builder gets active. This would allow the user to looks at the valid problem markers which are created during the build without having to guess which one of the other problem markers are still valid.
Especially useful for builds which take a long time, for example one of my clients has a build of approx. 20 minutes for his workspace (and due to strange IDE behavior feels that he has to do a full clean build from time to time).
Batch deletion of markers is very efficient AFAIK, e.g.,