| 15 | } |
| 16 | |
| 17 | static void lock() { |
| 18 | static const auto cls = javaClassStatic(); |
| 19 | static auto method = cls->getStaticMethod<void()>("lock"); |
| 20 | method(cls); |
| 21 | } |
| 22 | |
| 23 | static void unlock() { |
| 24 | static const auto cls = javaClassStatic(); |
no outgoing calls
no test coverage detected