fix compilation

auto-update
Zlatin Balevsky 2022-02-22 06:05:57 +00:00
parent f389231ca4
commit 9ee70f384c
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ public class Core {
if (System.hasProperty("auto.updater.class")) {
String className = System.getProperty("auto.updater.class")
log.info("initializing auto-updater $className")
Class<?> clazz = Class.forName(className))
Class<?> clazz = Class.forName(className)
AutoUpdater autoUpdater = (AutoUpdater) clazz.newInstance()
autoUpdater.init(this)
}