mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 19:52:07 +07:00
GitOrigin-RevId: 5e74319e790c4246b64e6d5f57c51c6930dbf19f
12 lines
184 B
Java
12 lines
184 B
Java
import serviceDeclarations.NonService;
|
|
|
|
class MyClass {
|
|
|
|
// not a service
|
|
static final NonService myNonService = new NonService();
|
|
|
|
// not a service
|
|
static final int a = 5;
|
|
|
|
}
|