More annotation fixes

This commit is contained in:
paulevsGitch 2021-06-06 12:35:34 +03:00
parent c6bb88fdc8
commit 0d63530136
4 changed files with 7 additions and 6 deletions

View file

@ -77,7 +77,7 @@ public class WeightedList<T> {
* Makes a sublist of this list with same weights. Used only in {@link WeighTree}
* @param start - {@code int} start index (inclusive).
* @param end - {@code int} end index (exclusive).
* @return {@link WeightedList<T>}.
* @return {@link WeightedList}.
*/
protected WeightedList<T> subList(int start, int end) {
WeightedList<T> list = new WeightedList<T>();