| 6 | |
| 7 | public class Fact implements AutoCloseable { |
| 8 | private static class JNI { |
| 9 | static { |
| 10 | DatomJNI.ensureLoaded(); |
| 11 | } |
| 12 | |
| 13 | private static native long fromEdn(String edn); |
| 14 | |
| 15 | private static native void destroy(long fact); |
| 16 | |
| 17 | private static native String toEdn(long fact); |
| 18 | } |
| 19 | |
| 20 | private long impl = 0; |
| 21 |
nothing calls this directly
no test coverage detected