Searched refs:quotedStr (Results 1 – 1 of 1) sorted by relevance
197 public static String removeEnclosingQuotes(String quotedStr) { in removeEnclosingQuotes() argument198 int length = quotedStr.length(); in removeEnclosingQuotes()200 && (quotedStr.charAt(0) == '"') && (quotedStr.charAt(length - 1) == '"')) { in removeEnclosingQuotes()201 return quotedStr.substring(1, length - 1); in removeEnclosingQuotes()203 return quotedStr; in removeEnclosingQuotes()