(File file)
| 141 | } |
| 142 | |
| 143 | @ApiStatus.Internal |
| 144 | public static void _loadFromFile(File file) { |
| 145 | String libPath = file.getAbsolutePath(); |
| 146 | Log.debug("Loading " + libPath); |
| 147 | System.load(libPath); |
| 148 | _loaded = true; |
| 149 | _nAfterLoad(); |
| 150 | } |
| 151 | |
| 152 | @ApiStatus.Internal |
| 153 | @SneakyThrows |
no test coverage detected