IntelliJ-Inspection-Lens/src/main/kotlin/com/chylex/intellij/inspectionlens/InspectionLensPluginDisposa...

13 lines
296 B
Kotlin

package com.chylex.intellij.inspectionlens
import com.intellij.openapi.Disposable
import com.intellij.openapi.components.Service
/**
* Gets automatically disposed when the plugin is unloaded.
*/
@Service
class InspectionLensPluginDisposableService : Disposable {
override fun dispose() {}
}