Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Nov 5, 2023
1 parent 31bc5ae commit 92432c2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import com.github.rafaelldi.diagnosticsclientplugin.services.DiagnosticsToolServ
import com.intellij.notification.Notification
import com.intellij.notification.NotificationAction
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.rd.util.launchBackground
import com.intellij.openapi.rd.util.lifetime
import com.intellij.platform.ide.progress.withBackgroundProgress

class InstallGlobalToolAction : NotificationAction(DiagnosticsClientBundle.message("notifications.install.global.tool")) {
override fun actionPerformed(e: AnActionEvent, notification: Notification) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import com.github.rafaelldi.diagnosticsclientplugin.services.DiagnosticsToolServ
import com.intellij.notification.Notification
import com.intellij.notification.NotificationAction
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.rd.util.launchBackground
import com.intellij.openapi.rd.util.lifetime
import com.intellij.platform.ide.progress.withBackgroundProgress

class UpdateGlobalToolAction : NotificationAction(DiagnosticsClientBundle.message("notifications.update.global.tool")) {
override fun actionPerformed(e: AnActionEvent, notification: Notification) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import com.intellij.execution.process.ProcessEvent
import com.intellij.execution.process.ProcessListener
import com.intellij.openapi.components.Service
import com.intellij.openapi.components.service
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.project.Project
import com.intellij.openapi.rd.createNestedDisposable
import com.intellij.openapi.rd.util.withUiContext
import com.intellij.platform.ide.progress.withBackgroundProgress
import com.intellij.util.application
import com.jetbrains.rd.framework.*
import com.jetbrains.rd.platform.util.idea.LifetimedService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import com.github.rafaelldi.diagnosticsclientplugin.DiagnosticsClientBundle
import com.intellij.execution.process.impl.ProcessListUtil
import com.intellij.openapi.components.Service
import com.intellij.openapi.components.service
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.project.Project
import com.intellij.openapi.util.UserDataHolderBase
import com.intellij.platform.ide.progress.withBackgroundProgress
import com.intellij.xdebugger.attach.LocalAttachHost
import com.intellij.xdebugger.attach.XAttachDebuggerProvider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import com.intellij.notification.Notification
import com.intellij.notification.NotificationType
import com.intellij.openapi.components.Service
import com.intellij.openapi.components.service
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.project.Project
import com.intellij.openapi.rd.util.withUiContext
import com.intellij.platform.ide.progress.withBackgroundProgress

@Service(Service.Level.PROJECT)
class MemoryDumpController(private val project: Project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import com.github.rafaelldi.diagnosticsclientplugin.model.CollectStackTraceComma
import com.github.rafaelldi.diagnosticsclientplugin.services.DiagnosticsHost
import com.intellij.openapi.components.Service
import com.intellij.openapi.components.service
import com.intellij.openapi.progress.withBackgroundProgress
import com.intellij.openapi.project.Project
import com.intellij.openapi.rd.util.withUiContext
import com.intellij.platform.ide.progress.withBackgroundProgress

@Service(Service.Level.PROJECT)
class StackTraceController(private val project: Project) {
Expand Down

0 comments on commit 92432c2

Please sign in to comment.