(String[] args)
| 8 | static String path = "https://physlets.org/tracker/library/JS/basketballGIF.trz!/html/basketballGIF_info.html"; |
| 9 | |
| 10 | public static void main(String[] args) { |
| 11 | Resource res = ResourceLoader.getResource(path); |
| 12 | if (res != null) { |
| 13 | @SuppressWarnings("unused") |
| 14 | String htmlCode = res.getString(); |
| 15 | } |
| 16 | System.exit(0); |
| 17 | } |
| 18 | |
| 19 | } |
nothing calls this directly
no test coverage detected