Skip to content

Commit 368fd25

Browse files
committed
merge conflicts resolved
1 parent b684a01 commit 368fd25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/notifications/DisplayToastNotifications.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
package software.aws.toolkits.jetbrains.core.notifications
55

6+
import com.intellij.notification.NotificationType
7+
import com.intellij.openapi.actionSystem.AnAction
68
import com.intellij.openapi.project.Project
79
import software.aws.toolkits.jetbrains.utils.notifyStickyWithData
810

@@ -17,7 +19,7 @@ object DisplayToastNotifications {
1719
}
1820

1921
fun shouldShowNotification(project: Project, notificationData: NotificationData) {
20-
if (RulesEngine.displayNotification(notificationData, project)) {
22+
if (RulesEngine.displayNotification(project, notificationData)) {
2123
val notificationContent = notificationData.content.locale
2224
val severity = notificationData.severity
2325
val followupActions = NotificationManager.createActions(notificationData.actions, notificationContent.description, notificationContent.title)

0 commit comments

Comments
 (0)