Mismatch between light service level and its constructor
Reports mismatches between light service levels and its constructors.
The following problems are reported:
A light service class has a constructor with two parameters of types
com.intellij.openapi.project.Projectandkotlinx.coroutines.CoroutineScope, or one parameter of typeProjectis not annotated as a project-level service.A light service class annotated as an application-level service does not have a no-arg constructor, nor a constructor with one parameter of type
CoroutineScope.
Example (Kotlin):
After applying the quick-fix that suggests specifying 'Service.Level.PROJECT' parameter in '@Service' annotation is applied:
After applying the quick-fix that suggests removing the parameter from constructor 'MyService':
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
MismatchedLightServiceLevelAndCtor- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
New in 2023.2
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |