mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 09:47:51 +07:00
GitOrigin-RevId: 5e74319e790c4246b64e6d5f57c51c6930dbf19f
13 lines
400 B
Java
13 lines
400 B
Java
package serviceDeclarations;
|
|
|
|
import com.intellij.openapi.application.ApplicationManager;
|
|
import com.intellij.openapi.components.Service;
|
|
|
|
// Application Service by empty annotation
|
|
@Service
|
|
public final class LightServiceEmptyAnnotation {
|
|
public static LightServiceEmptyAnnotation getInstance() {
|
|
return ApplicationManager.getApplication().getService(LightServiceEmptyAnnotation.class);
|
|
}
|
|
}
|