From f85d1f34bc681e1aa27f0c7e3a62f9c2fa1c412b Mon Sep 17 00:00:00 2001 From: Nilstrieb Date: Tue, 24 Nov 2020 11:20:27 +0100 Subject: [PATCH] forgot to fix <> in the arg split regex --- src/Regex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Regex.java b/src/Regex.java index 156279d..b979ddf 100644 --- a/src/Regex.java +++ b/src/Regex.java @@ -56,7 +56,7 @@ public abstract class Regex { *
  • 2 The datatype
  • * */ - public static final Pattern ARG_SPLIT_REGEX = Pattern.compile(" *(\\w+) *: *(\\w+)"); + public static final Pattern ARG_SPLIT_REGEX = Pattern.compile(" *(\\w+) *: *([\\w<>]+)"); public static final Pattern FIELD_FIND_REGEX_NO_ENCAPSULATION = Pattern.compile(" *(?[+\\-~#])? *(?\\w+) *: *(?[\\w<>]+)");