Obtain the last modified time for the JAR. @return The time (in the same format as System#currentTimeMillis()) that the resource was last modified. Returns -1 if the entry does not exist @throws IOException if an I/O error occurs while processing the JAR file
()
| 59 | * @throws IOException if an I/O error occurs while processing the JAR file |
| 60 | */ |
| 61 | default long getLastModified() throws IOException { |
| 62 | URL jarUrl = getJarFileURL(); |
| 63 | URLConnection urlConn = null; |
| 64 | try { |
no outgoing calls
no test coverage detected