Searched refs:hyphenLocation (Results 1 – 1 of 1) sorted by relevance
679 int hyphenLocation = value.indexOf("-"); in normalizeHyphens() local680 if (hyphenLocation > 0 && in normalizeHyphens()681 Character.isDigit(value.charAt(hyphenLocation - 1)) && in normalizeHyphens()682 hyphenLocation < value.length() - 1 && in normalizeHyphens()683 Character.isDigit(value.charAt(hyphenLocation + 1))) { in normalizeHyphens()685 sb.append(value.substring(0, hyphenLocation)); in normalizeHyphens()687 sb.append(value.substring(hyphenLocation + 1)); in normalizeHyphens()