Searched refs:hyphenLocation (Results 1 – 1 of 1) sorted by relevance
645 int hyphenLocation = value.indexOf("-"); in normalizeHyphens() local646 if (hyphenLocation > 0 && in normalizeHyphens()647 Character.isDigit(value.charAt(hyphenLocation - 1)) && in normalizeHyphens()648 hyphenLocation < value.length() - 1 && in normalizeHyphens()649 Character.isDigit(value.charAt(hyphenLocation + 1))) { in normalizeHyphens()651 sb.append(value.substring(0, hyphenLocation)); in normalizeHyphens()653 sb.append(value.substring(hyphenLocation + 1)); in normalizeHyphens()