< prev index next >

src/java.base/share/classes/java/text/CharacterIteratorFieldDelegate.java

Print this page

        

*** 110,120 **** attributedStrings.add(new AttributedString( string.substring(size))); size = string.length(); } int iCount = attributedStrings.size(); ! AttributedCharacterIterator iterators[] = new AttributedCharacterIterator[iCount]; for (int counter = 0; counter < iCount; counter++) { iterators[counter] = attributedStrings. get(counter).getIterator(); --- 110,120 ---- attributedStrings.add(new AttributedString( string.substring(size))); size = string.length(); } int iCount = attributedStrings.size(); ! AttributedCharacterIterator[] iterators = new AttributedCharacterIterator[iCount]; for (int counter = 0; counter < iCount; counter++) { iterators[counter] = attributedStrings. get(counter).getIterator();
< prev index next >