commit 969796cb5986371a275aafa447bc7c6ec78e22b0
parent 967f378ac9f911c7265d994f68315148371733de
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Mon, 7 Oct 2019 13:28:46 +0200
fix condition
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/kotlin/tech/libeufin/Main.kt b/src/main/kotlin/tech/libeufin/Main.kt
@@ -46,7 +46,7 @@ fun main() {
val logger = getLogger()
val xmlProcess = XML()
- if (xmlProcess == null) {
+ if (xmlProcess.isNull()) {
logger.error("Could not load the XML processor, aborting")
return
}