()
| 16 | public static final String LIBRARY_NAME = "skija"; |
| 17 | |
| 18 | public static void staticLoad() { |
| 19 | if (!_loaded && !"false".equals(System.getProperty("skija.staticLoad"))) |
| 20 | load(); |
| 21 | } |
| 22 | |
| 23 | public static String readResource(URL url) { |
| 24 | try (Reader reader = new InputStreamReader(url.openStream(), StandardCharsets.UTF_8)) { |
no test coverage detected