From fbcd6bdd00a1de3950ee0e15957d720d3fed218d Mon Sep 17 00:00:00 2001 From: Ram Viswanadha Date: Thu, 22 Jan 2004 19:26:48 +0000 Subject: [PATCH] ICU-3435 code coverage update X-SVN-Rev: 14383 --- .../src/com/ibm/icu/impl/StringUCharacterIterator.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/icu4j/src/com/ibm/icu/impl/StringUCharacterIterator.java b/icu4j/src/com/ibm/icu/impl/StringUCharacterIterator.java index 6e82d7f8b54..68fc319b2f7 100644 --- a/icu4j/src/com/ibm/icu/impl/StringUCharacterIterator.java +++ b/icu4j/src/com/ibm/icu/impl/StringUCharacterIterator.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/StringUCharacterIterator.java,v $ - * $Date: 2004/01/09 03:07:13 $ - * $Revision: 1.3 $ + * $Date: 2004/01/22 19:26:48 $ + * $Revision: 1.4 $ * ******************************************************************************* */ @@ -183,7 +183,7 @@ public final class StringUCharacterIterator extends UCharacterIterator * @exception IndexOutOfBounds exception if there is not enough * room after offset in the array, or if offset < 0. */ - ///CLOVER: OFF + ///CLOVER:OFF public int getText(char[] fillIn, int offset) { int length = m_text_.length(); @@ -193,9 +193,9 @@ public final class StringUCharacterIterator extends UCharacterIterator m_text_.getChars(0, length, fillIn, offset); return length; } - ///CLOVER: ON + ///CLOVER:ON /** - * Convenience method for returning the underlying text storage as as + * Convenience method for returning the underlying text storage as as * string * @return the underlying text storage in the iterator as a string */