Files
Andrey Cherkasovandintellij-monorepo-bot aa37a0eb71 [devKit] New inspection: A service can be converted to a light one
IDEA-254577

GitOrigin-RevId: 7b3202cfe8d37173d68b3100abc47f41212bf8f1
2023-03-27 12:24:13 +00:00

7 lines
219 B
Java

package com.example.demo;
import com.intellij.openapi.components.PersistentStateComponent;
abstract class MyServiceBase implements PersistentStateComponent<Integer> { }
final class MyService extends MyServiceBase { }