From 9ee70f384c07e4403869c984cb4379993f646235 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 22 Feb 2022 06:05:57 +0000 Subject: [PATCH] fix compilation --- core/src/main/groovy/com/muwire/core/Core.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/Core.groovy b/core/src/main/groovy/com/muwire/core/Core.groovy index d6739926..b84eeaeb 100644 --- a/core/src/main/groovy/com/muwire/core/Core.groovy +++ b/core/src/main/groovy/com/muwire/core/Core.groovy @@ -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) }