1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 03:02:22 -05:00

Caldav: New fix for fix 3190219, regression on quote encoding since 3165749 fix

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1642 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-03-16 11:52:19 +00:00
parent 71493a5a28
commit 286a0929b1

View File

@ -196,9 +196,6 @@ public final class StringUtil {
if (name.indexOf('>') >= 0) {
result = GT_PATTERN.matcher(result).replaceAll(">");
}
if (name.indexOf('"') >= 0) {
result = QUOTE_PATTERN.matcher(result).replaceAll(""");
}
}
return result;
}