From 9c4b7ffe0b4505aebf57c1772acd99e8710684b9 Mon Sep 17 00:00:00 2001 From: "Lange, Dr. Herbert" <herbert.lange@uni-hamburg.de> Date: Mon, 16 May 2022 11:13:35 +0200 Subject: [PATCH] change access to variables for inherited classes --- .../corpora/validation/quest/AnnotationChecker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/de/uni_hamburg/corpora/validation/quest/AnnotationChecker.java b/src/main/java/de/uni_hamburg/corpora/validation/quest/AnnotationChecker.java index 2ac5b43b..f18fe1af 100644 --- a/src/main/java/de/uni_hamburg/corpora/validation/quest/AnnotationChecker.java +++ b/src/main/java/de/uni_hamburg/corpora/validation/quest/AnnotationChecker.java @@ -43,12 +43,12 @@ abstract class AnnotationChecker extends Checker implements CorpusFunction { private boolean showTagStats = false; // List of tiers to be checked - private final List<String> tierIds = new ArrayList<>(); + protected final List<String> tierIds = new ArrayList<>(); // Regex to separate tokens private final String tokenSeparator = "\\s+" ; // Check if the minimal setup is done - private boolean setUp = false; + protected boolean setUp = false; public AnnotationChecker(Properties properties) { super(false, properties); -- GitLab