From 21034209a564f2189ede31ec66014271e8446505 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 30 Jun 2019 06:29:46 +0100 Subject: [PATCH] add ? to split pattern --- core/src/main/groovy/com/muwire/core/Constants.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/Constants.groovy b/core/src/main/groovy/com/muwire/core/Constants.groovy index 7a2ea548..075a9b4a 100644 --- a/core/src/main/groovy/com/muwire/core/Constants.groovy +++ b/core/src/main/groovy/com/muwire/core/Constants.groovy @@ -9,5 +9,5 @@ class Constants { public static final int MAX_HEADER_SIZE = 0x1 << 14 public static final int MAX_HEADERS = 16 - public static final String SPLIT_PATTERN = "[\\*\\+\\-,\\.:;\\(\\)=_/\\\\\\!\\\"\\\'\\\$%\\|\\[\\]\\{\\}]" + public static final String SPLIT_PATTERN = "[\\*\\+\\-,\\.:;\\(\\)=_/\\\\\\!\\\"\\\'\\\$%\\|\\[\\]\\{\\}\\?]" }