From 5b2c212ca21760141b59b3b9555d7306c4c45265 Mon Sep 17 00:00:00 2001 From: Bernd Kiefer Date: Thu, 23 May 2024 18:09:33 +0200 Subject: [PATCH] Add logback to compiler --- compiler/pom.xml | 1 - .../main/java/de/dfki/mlt/rudimant/common/IncludeInfo.java | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/pom.xml b/compiler/pom.xml index 87f9944d..f9a5f994 100644 --- a/compiler/pom.xml +++ b/compiler/pom.xml @@ -52,7 +52,6 @@ ch.qos.logback logback-classic ${logback.version} - test diff --git a/library/src/main/java/de/dfki/mlt/rudimant/common/IncludeInfo.java b/library/src/main/java/de/dfki/mlt/rudimant/common/IncludeInfo.java index f7e09319..35e180c8 100644 --- a/library/src/main/java/de/dfki/mlt/rudimant/common/IncludeInfo.java +++ b/library/src/main/java/de/dfki/mlt/rudimant/common/IncludeInfo.java @@ -34,7 +34,11 @@ public class IncludeInfo extends BasicInfo { protected List _errors = new ArrayList<>(); + /** this is the *whole* relative path down from where the topmost .rudi file + * is located + */ protected String[] relativePath; + /** Are there errors somewhere in the subtree? */ protected boolean failure = false; public static void saveInfo(IncludeInfo info, Writer w) {