Searched refs:REMOVE_OPTIONAL_BRACKETS (Results 1 – 5 of 5) sorted by relevance
40 private static final Pattern REMOVE_OPTIONAL_BRACKETS = Pattern.compile("^<?([^>]+)>?$"); field in MimeBodyPart135 return REMOVE_OPTIONAL_BRACKETS.matcher(contentId).replaceAll("$1"); in getContentId()
85 private static final Pattern REMOVE_OPTIONAL_BRACKETS = Pattern.compile("^<?([^>]+)>?$"); field in MimeMessage227 return REMOVE_OPTIONAL_BRACKETS.matcher(contentId).replaceAll("$1"); in getContentId()
39 private static final Pattern REMOVE_OPTIONAL_BRACKETS = Pattern.compile("^<?([^>]+)>?$"); field in MimeBodyPart134 return REMOVE_OPTIONAL_BRACKETS.matcher(contentId).replaceAll("$1"); in getContentId()
84 private static final Pattern REMOVE_OPTIONAL_BRACKETS = Pattern.compile("^<?([^>]+)>?$"); field in MimeMessage226 return REMOVE_OPTIONAL_BRACKETS.matcher(contentId).replaceAll("$1"); in getContentId()
66 private static final Pattern REMOVE_OPTIONAL_BRACKETS = Pattern.compile("^<?([^>]+)>?$"); field in Message488 final String cid = REMOVE_OPTIONAL_BRACKETS.matcher(cids[0]).replaceAll("$1"); in Message()