Skip to content

Commit

Permalink
Comment out notifying user about exception in annotator
Browse files Browse the repository at this point in the history
(cherry picked from commit 209725b)
  • Loading branch information
Nikolay Obedin committed Dec 11, 2015
1 parent d75288e commit 26202cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/jetbrains/sbt/annotator/SbtDependencyAnnotator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class SbtDependencyAnnotator extends Annotator {
doAnnotate(element, holder)
} catch {
case exc: ResolverException =>
NotificationUtil.showMessage(null, exc.getMessage)
// TODO: find another way to notify user instead of spamming with notifications
// NotificationUtil.showMessage(null, exc.getMessage)
}

private def doAnnotate(element: PsiElement, holder: AnnotationHolder): Unit = {
Expand Down

0 comments on commit 26202cc

Please sign in to comment.