mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
29 lines
2.9 KiB
INI
29 lines
2.9 KiB
INI
inspections.plugin.extension.registers.kotlin.object=Extension class is a Kotlin object
|
|
inspections.plugin.kotlin.object.registered.as.extension=Kotlin object registered as extension
|
|
|
|
inspections.forbidden.method.in.suspend.context=Forbidden in suspend context method usage
|
|
inspections.forbidden.method.in.suspend.context.text=Method ''{0}'' annotated with @RequiresBlockingContext. It is not designed to be called in suspend functions
|
|
inspections.forbidden.method.in.suspend.context.check.canceled.text=Do not call 'ProgressManager.checkCanceled' in suspend context. Use top-level 'checkCancelled' function
|
|
inspections.forbidden.method.in.suspend.context.check.canceled.fix.text=Replace 'ProgressManager.checkCanceled' with coroutine-friendly 'checkCancelled'
|
|
inspections.forbidden.method.in.suspend.context.invoke.and.wait.text='invokeAndWait' can block current coroutine. Use 'Dispatchers.EDT' instead
|
|
inspections.forbidden.method.in.suspend.context.invoke.and.wait.fix.text=Replace 'invokeAndWait' call with 'withContext(Dispatchers.EDT) {}'
|
|
inspections.forbidden.method.in.suspend.context.invoke.later.text='invokeLater' is not idiomatic in suspend context. Use 'Dispatchers.EDT' instead
|
|
inspections.forbidden.method.in.suspend.context.invoke.later.fix.with.context.text=(May change semantics) Replace 'invokeLater' call with 'withContext(Dispatchers.EDT) {}'
|
|
inspections.forbidden.method.in.suspend.context.invoke.later.fix.launch.text=Replace 'invokeLater' with 'launch(Dispatchers.EDT)'
|
|
inspections.forbidden.method.in.suspend.context.default.modality.state.text='defaultModalityState()' does not work in suspend context. If it is really necessary, use 'contextModality()'
|
|
inspections.forbidden.method.in.suspend.context.navigate.to.suspend.context=Navigate to suspend context
|
|
|
|
inspections.companion.object.in.extension=Companion object in extensions
|
|
inspections.companion.object.in.extension.message=Companion objects in IDE extension implementations may only contain a logger and constants
|
|
inspections.empty.companion.object.in.extension.message=Extensions should not contain a companion object
|
|
inspections.remove.empty.companion.object.fix.text=Remove empty companion object
|
|
inspections.create.object.and.move.prohibited.declarations.fix.text=Create an object and move the prohibited declarations
|
|
inspections.move.prohibited.declarations.to.top.level.fix.text=Move prohibited declarations to top level
|
|
|
|
inspection.light.service.must.not.be.open.message=Light service must not be open
|
|
|
|
inspection.extension.class.should.not.be.open.text=Extension class should not be open
|
|
|
|
inspections.application.service.as.static.immutable.property.with.backing.field.message=Application service must not be assigned to a static immutable property with a backing field
|
|
inspections.an.explicit.method.should.be.used.to.retrieve.an.application.service.message=Provide explicit 'getInstance()' method to access application service instead of a property
|