From a9e2065248fe277d16b4400ee41f8368ed58fbf1 Mon Sep 17 00:00:00 2001 From: amihaiemil Date: Sun, 20 Nov 2022 23:18:43 +0200 Subject: [PATCH] todo --- src/main/java/com/amihaiemil/eoyaml/WellIndented.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/amihaiemil/eoyaml/WellIndented.java b/src/main/java/com/amihaiemil/eoyaml/WellIndented.java index 57e32e2b..6d881260 100644 --- a/src/main/java/com/amihaiemil/eoyaml/WellIndented.java +++ b/src/main/java/com/amihaiemil/eoyaml/WellIndented.java @@ -62,7 +62,13 @@ * @author Mihai Andronache (amihaiemil@gmail.com) * @version $Id$ * @since 3.1.2 - * + * @todo #525:3h Please make sure to allow keys with empty values in mappings. + * At the moment, if we cannot find the value on the same line, we always + * look beneath the key for more-indented lines to be treated as the value, + * but this is not always the case. This should be a valid YAML: + * key1: value1 + * key2: + * key3: value3 */ final class WellIndented implements YamlLines {