From: Robert Varga Date: Tue, 8 Dec 2020 21:27:30 +0000 (+0100) Subject: Use correct key-arg splitting X-Git-Tag: v6.0.2~4 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=19c7b05056819a88f9648e6c16b22dd5e61bb364;hp=19c7b05056819a88f9648e6c16b22dd5e61bb364;p=yangtools.git Use correct key-arg splitting The splitter we have operates on spaces and trims results to get rid of whitespace -- probably as a consequence of us historically having bugs there. We currently break if someone uses double-quoted whitespace trimming, as we do not treat '\n' as a separator and then attempt to interpret it as a node-identifier. Add an explicit SEP equivalent CharMatcher and use a Splitter on that, resulting in '\t' and '\n' being correctly trimmed. JIRA: YANGTOOLS-1200 Change-Id: Ifa3085fffcbbe24204e9d6c0d86ed8c41bd61065 Signed-off-by: Robert Varga (cherry picked from commit 5fe0d9e2a63cc9cf3be8c39f32305cf9e2a8be4e) ---