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) }