This is an automated email from the ASF dual-hosted git repository. krickert pushed a commit to branch OPENNLP-1870 in repository https://gitbox.apache.org/repos/asf/opennlp.git
commit ce0a188da2ca2da99961833efc13d984562ec6e4 Author: Kristian Rickert <[email protected]> AuthorDate: Tue Jul 14 20:19:42 2026 -0400 OPENNLP-1870: Read the fold table through the Direction accessor in the annotation audit (cherry picked from commit a62d23ae02100816325ad75c81ea6fa67adb8d25) --- .../test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java b/opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java index b7cf4962e..070da5c33 100644 --- a/opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java +++ b/opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java @@ -96,7 +96,7 @@ public class EmojiAnnotationsTest { try (InputStream in = EmojiEmoticons.class.getResourceAsStream("emoji-emoticons.txt")) { tables = EmojiEmoticons.parse(in); } - for (final List<EmojiEmoticons.Mapping> candidates : tables.emojiToEmoticon().values()) { + for (final List<EmojiEmoticons.Mapping> candidates : tables.emojiToEmoticon().table().values()) { for (final EmojiEmoticons.Mapping mapping : candidates) { final String key = mapping.source().replace(cp(0xFE0F), ""); assertTrue(annotations.containsKey(key),
