Reputation: 263
Is there a way to clear the Problems window (and any related source code error/warning annotations) without invoking "Build All/Project/..." or "Clean project" (or deleting the project and then re-creating/re-importing it)?
Upvotes: 18
Views: 10404
Reputation: 7023
you can set limit visible items
through the down arrow in the top right side of problems views then click preferences
, type your limit, for example (1000):
after that by :
right click in the problems view -> select all,
right click again -> delete.
Upvotes: 0
Reputation: 1
If Using Checkstyle, then go to the Project-> Right Click -> Checkstyle -> Clear Violations.
This will clear the Problems Window of all the Errors, Warnings reported via Checkstyle
Upvotes: -1
Reputation: 724
It is also not best solution, but when you configure Problems view (using menus under arrow icon) you can turn limit off and then select and deleta all errors.
Upvotes: 3
Reputation: 4491
Yes, in the problems view:
All the markers are then deleted.
Upvotes: 16