Skip to content

Commit

Permalink
added information notification to notifyutil in addition to error and…
Browse files Browse the repository at this point in the history
… success
  • Loading branch information
OpherV committed Apr 10, 2014
1 parent 980cc1a commit f7bf5e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gitflow/ui/NotifyUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public static void notifySuccess(Project project, String title, String message)
notify(NotificationType.INFORMATION, BALLOON_NOTIFICATION, project, title, message);
}

public static void notifyInfo(Project project, String title, String message) {
notify(NotificationType.INFORMATION, TOOLWINDOW_NOTIFICATION, project, title, message);
}

public static void notifyError(Project project, String title, String message) {
notify(NotificationType.ERROR, TOOLWINDOW_NOTIFICATION, project, title, message);
}
Expand Down

0 comments on commit f7bf5e9

Please sign in to comment.