fixed arg regex

This commit is contained in:
nora 2020-11-20 20:30:39 +01:00
parent 096621c19b
commit cb331331f1
3 changed files with 2 additions and 4 deletions

View file

@ -50,5 +50,5 @@ public class Regex {
* <li>2 The datatype</li>
* </ul>
*/
public static final String ARG_SPLIT_REGEX = " ?(\\w+): (\\w+)";
public static final String ARG_SPLIT_REGEX = " *(\\w+) *: *(\\w+)";
}