src/main/java/org/jetbrains/plugins/spotbugs/actions/TreeNextOccurence.java [33:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	@Override
	void updateImpl(
			@NotNull final AnActionEvent e,
			@NotNull final Project project,
			@NotNull final ToolWindow toolWindow,
			@NotNull final FindBugsState state
	) {

		final Content content = toolWindow.getContentManager().getContent(0);
		if (content == null) {
			e.getPresentation().setEnabled(false);
			e.getPresentation().setVisible(false);
			return;
		}
		final ToolWindowPanel panel = (ToolWindowPanel) content.getComponent();
		final BugTree tree = panel.getBugTreePanel().getBugTree();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/jetbrains/plugins/spotbugs/actions/TreePreviousOccurence.java [33:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	@Override
	void updateImpl(
			@NotNull final AnActionEvent e,
			@NotNull final Project project,
			@NotNull final ToolWindow toolWindow,
			@NotNull final FindBugsState state
	) {

		final Content content = toolWindow.getContentManager().getContent(0);
		if (content == null) {
			e.getPresentation().setEnabled(false);
			e.getPresentation().setVisible(false);
			return;
		}
		final ToolWindowPanel panel = (ToolWindowPanel) content.getComponent();
		final BugTree tree = panel.getBugTreePanel().getBugTree();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



