protected void hyperlinkActivated()

in src/main/java/com/intellij/compiler/impl/InternalCompileDriver.java [715:726]


        protected void hyperlinkActivated(@NotNull Notification notification, @NotNull HyperlinkEvent e) {
            final Project project = myProjectRef.get();
            if (project != null && !project.isDisposed() && CompilerTask.showCompilerContent(project, myContentId)) {
                final ToolWindow tw = ToolWindowManager.getInstance(project).getToolWindow(ToolWindowId.MESSAGES_WINDOW);
                if (tw != null) {
                    tw.activate(null, false);
                }
            }
            else {
                notification.expire();
            }
        }