Home
last modified time | relevance | path

Searched refs:quotedStr (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DNativeUtil.java198 public static String removeEnclosingQuotes(String quotedStr) { in removeEnclosingQuotes() argument
199 int length = quotedStr.length(); in removeEnclosingQuotes()
201 && (quotedStr.charAt(0) == '"') && (quotedStr.charAt(length - 1) == '"')) { in removeEnclosingQuotes()
202 return quotedStr.substring(1, length - 1); in removeEnclosingQuotes()
204 return quotedStr; in removeEnclosingQuotes()