forked from I2P_Developers/i2p.i2p
* Plugins:
- Enforce min and max Jetty versions at plugin installation - Enforce I2P, Java, and Jetty versions at plugin startup too
This commit is contained in:
@ -12,7 +12,16 @@ public class LogsHelper extends HelperBase {
|
||||
|
||||
/** @since 0.8.11 */
|
||||
public String getJettyVersion() {
|
||||
return Version.getImplVersion();
|
||||
return jettyVersion();
|
||||
}
|
||||
|
||||
/** @since 0.8.13 */
|
||||
static String jettyVersion() {
|
||||
try {
|
||||
return Version.getImplVersion();
|
||||
} catch (Throwable t) {
|
||||
return "unknown";
|
||||
}
|
||||
}
|
||||
|
||||
public String getLogs() {
|
||||
|
Reference in New Issue
Block a user