Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Deprecated API usages in the plugin should be replaced with stable AP…
…I calls #693
  • Loading branch information
Vassiliy-Kudryashov committed Sep 20, 2022
commit ff6c5c031fe8f2584c04adf2d467979d2c891a8c
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,8 @@ abstract class UrlNotifier : Notifier() {
protected abstract val urlOpeningListener: NotificationListener

override fun notify(info: String, project: Project?, module: Module?) {
notificationGroup
.createNotification(
titleText,
content(project, module, info),
notificationType,
urlOpeningListener,
).notify(project)
notificationGroup.createNotification(content(project, module, info), notificationType)
.setTitle(titleText).setListener(urlOpeningListener).notify(project)
}
}

Expand Down