ICU-9413 Fixed Javadoc warnings - mostly incomplete tag in non-API methods.

X-SVN-Rev: 32323
This commit is contained in:
Yoshito Umaoka 2012-09-04 02:52:12 +00:00
parent 063b48f66a
commit e4ee964593
4 changed files with 1 additions and 8 deletions

View file

@ -853,7 +853,6 @@ public abstract class CharsetEncoderICU extends CharsetEncoder {
* <code>CoderResult.UNDERFLOW</code> if there is a problem, or
* <code>null</code> if there isn't.
* @see #handleSurrogates(CharBuffer, char)
* @see #handleSurrogates(CharBuffer, int, char)
* @see #handleSurrogates(char[], int, int, char)
*/
final CoderResult handleSurrogates(CharBuffer source, char lead) {
@ -895,7 +894,6 @@ public abstract class CharsetEncoderICU extends CharsetEncoder {
* <code>CoderResult.UNDERFLOW</code> if there is a problem, or <code>null</code> if
* there isn't.
* @see #handleSurrogates(CharBuffer, char)
* @see #handleSurrogates(CharBuffer, int, char)
* @see #handleSurrogates(char[], int, int, char)
*/
final CoderResult handleSurrogates(char[] sourceArray, int sourceIndex,

View file

@ -390,7 +390,6 @@ public final class AlphabeticIndex<V> implements Iterable<Bucket<V>> {
/**
* Determine the best labels to use. This is based on the exemplars, but we also process to make sure that they are unique,
* and sort differently, and that the overall list is small enough.
* @return
*/
private ArrayList<String> initLabels() {
UnicodeSet exemplars = new UnicodeSet(initialLabels);
@ -455,7 +454,6 @@ public final class AlphabeticIndex<V> implements Iterable<Bucket<V>> {
* This method is called to get the index exemplars. Normally these come from the locale directly,
* but if they aren't available, we have to synthesize them.
* @param locale
* @return
*/
private UnicodeSet getIndexExemplars(ULocale locale) {
UnicodeSet exemplars;

View file

@ -1635,13 +1635,12 @@ public class DateTimePatternGenerator implements Freezable<DateTimePatternGenera
/**
* @param foundMask
* @return
*/
private int getTopBitNumber(int foundMask) {
int i = 0;
while (foundMask != 0) {
foundMask >>>= 1;
++i;
++i;
}
return i-1;
}
@ -1878,7 +1877,6 @@ public class DateTimePatternGenerator implements Freezable<DateTimePatternGenera
* Get the canonical index, or return -1 if illegal.
* @param s
* @param strict TODO
* @return
*/
private static int getCanonicalIndex(String s, boolean strict) {
int len = s.length();

View file

@ -525,7 +525,6 @@ public class MessageFormat extends UFormat {
/**
* Returns the part index of the next ARG_START after partIndex, or -1 if there is none more.
* @param partIndex Part index of the previous ARG_START (initially 0).
* @return
*/
private int nextTopLevelArgStart(int partIndex) {
if (partIndex != 0) {