mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-14 11:42:23 -05:00
Fix bug in removeQuotes
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1722 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
a2e8f1f07d
commit
9b8888c014
@ -388,18 +388,21 @@ public final class StringUtil {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove quotes if present on value.
|
* Remove quotes if present on value.
|
||||||
|
*
|
||||||
* @param value input value
|
* @param value input value
|
||||||
* @return unquoted string
|
* @return unquoted string
|
||||||
*/
|
*/
|
||||||
public static String removeQuotes(String value) {
|
public static String removeQuotes(String value) {
|
||||||
String result = value;
|
String result = value;
|
||||||
if (result.startsWith("\"") || result.startsWith("{") || result.startsWith("(")) {
|
if (result != null) {
|
||||||
result = result.substring(1);
|
if (result.startsWith("\"") || result.startsWith("{") || result.startsWith("(")) {
|
||||||
}
|
result = result.substring(1);
|
||||||
if (result.endsWith("\"") || result.endsWith("}") || result.endsWith(")")) {
|
}
|
||||||
result = result.substring(0, result.length() - 1);
|
if (result.endsWith("\"") || result.endsWith("}") || result.endsWith(")")) {
|
||||||
|
result = result.substring(0, result.length() - 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user