use of com.android.tools.idea.gradle.project.sync.hyperlink.FileBugHyperlink in project android by JetBrains.
the class UnexpectedErrorHandler method getQuickFixHyperlinks.
@Override
@NotNull
protected List<NotificationHyperlink> getQuickFixHyperlinks(@NotNull NotificationData notification, @NotNull Project project, @NotNull String text) {
List<NotificationHyperlink> hyperlinks = new ArrayList<>();
hyperlinks.add(new FileBugHyperlink());
hyperlinks.add(new ShowLogHyperlink());
return hyperlinks;
}
Aggregations