Skip to content

Commit e3b8c0b

Browse files
committed
Update @SInCE tags to @SInCE 23.1.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=170234714
1 parent 956f843 commit e3b8c0b

38 files changed

+98
-98
lines changed

android/guava/src/com/google/common/collect/ImmutableBiMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static <K, V> Builder<K, V> builder() {
127127
* <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
128128
* but not exactly, the number of entries added to the builder.
129129
*
130-
* @since NEXT
130+
* @since 23.1
131131
*/
132132
@Beta
133133
public static <K, V> Builder<K, V> builderWithExpectedSize(int expectedSize) {

android/guava/src/com/google/common/collect/ImmutableList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ public static <E> Builder<E> builder() {
651651
* <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
652652
* but not exactly, the number of elements added to the builder.
653653
*
654-
* @since NEXT
654+
* @since 23.1
655655
*/
656656
@Beta
657657
public static <E> Builder<E> builderWithExpectedSize(int expectedSize) {

android/guava/src/com/google/common/collect/ImmutableMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public static <K, V> Builder<K, V> builder() {
154154
* <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
155155
* but not exactly, the number of entries added to the builder.
156156
*
157-
* @since NEXT
157+
* @since 23.1
158158
*/
159159
@Beta
160160
public static <K, V> Builder<K, V> builderWithExpectedSize(int expectedSize) {

android/guava/src/com/google/common/collect/ImmutableSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ public static <E> Builder<E> builder() {
420420
* <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
421421
* but not exactly, the number of distinct elements added to the builder.
422422
*
423-
* @since NEXT
423+
* @since 23.1
424424
*/
425425
@Beta
426426
public static <E> Builder<E> builderWithExpectedSize(int expectedSize) {

android/guava/src/com/google/common/graph/Traverser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @author Jens Nyman
3333
* @param <N> Node parameter type
34-
* @since NEXT
34+
* @since 23.1
3535
*/
3636
@Beta
3737
public abstract class Traverser<N> {

android/guava/src/com/google/common/primitives/Booleans.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ public static int countTrue(boolean... values) {
528528
* Reverses the elements of {@code array}. This is equivalent to {@code
529529
* Collections.reverse(Booleans.asList(array))}, but is likely to be more efficient.
530530
*
531-
* @since NEXT
531+
* @since 23.1
532532
*/
533533
public static void reverse(boolean[] array) {
534534
checkNotNull(array);
@@ -543,7 +543,7 @@ public static void reverse(boolean[] array) {
543543
*
544544
* @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
545545
* {@code toIndex > fromIndex}
546-
* @since NEXT
546+
* @since 23.1
547547
*/
548548
public static void reverse(boolean[] array, int fromIndex, int toIndex) {
549549
checkNotNull(array);

android/guava/src/com/google/common/primitives/Bytes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ byte[] toByteArray() {
372372
* Reverses the elements of {@code array}. This is equivalent to {@code
373373
* Collections.reverse(Bytes.asList(array))}, but is likely to be more efficient.
374374
*
375-
* @since NEXT
375+
* @since 23.1
376376
*/
377377
public static void reverse(byte[] array) {
378378
checkNotNull(array);
@@ -387,7 +387,7 @@ public static void reverse(byte[] array) {
387387
*
388388
* @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
389389
* {@code toIndex > fromIndex}
390-
* @since NEXT
390+
* @since 23.1
391391
*/
392392
public static void reverse(byte[] array, int fromIndex, int toIndex) {
393393
checkNotNull(array);

android/guava/src/com/google/common/primitives/Chars.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ public static char[] toArray(Collection<Character> collection) {
438438
/**
439439
* Sorts the elements of {@code array} in descending order.
440440
*
441-
* @since NEXT
441+
* @since 23.1
442442
*/
443443
public static void sortDescending(char[] array) {
444444
checkNotNull(array);
@@ -449,7 +449,7 @@ public static void sortDescending(char[] array) {
449449
* Sorts the elements of {@code array} between {@code fromIndex} inclusive and {@code toIndex}
450450
* exclusive in descending order.
451451
*
452-
* @since NEXT
452+
* @since 23.1
453453
*/
454454
public static void sortDescending(char[] array, int fromIndex, int toIndex) {
455455
checkNotNull(array);
@@ -462,7 +462,7 @@ public static void sortDescending(char[] array, int fromIndex, int toIndex) {
462462
* Reverses the elements of {@code array}. This is equivalent to {@code
463463
* Collections.reverse(Chars.asList(array))}, but is likely to be more efficient.
464464
*
465-
* @since NEXT
465+
* @since 23.1
466466
*/
467467
public static void reverse(char[] array) {
468468
checkNotNull(array);
@@ -477,7 +477,7 @@ public static void reverse(char[] array) {
477477
*
478478
* @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
479479
* {@code toIndex > fromIndex}
480-
* @since NEXT
480+
* @since 23.1
481481
*/
482482
public static void reverse(char[] array, int fromIndex, int toIndex) {
483483
checkNotNull(array);

android/guava/src/com/google/common/primitives/Doubles.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ public String toString() {
406406
* <p>Note that this method uses the total order imposed by {@link Double#compare}, which treats
407407
* all NaN values as equal and 0.0 as greater than -0.0.
408408
*
409-
* @since NEXT
409+
* @since 23.1
410410
*/
411411
public static void sortDescending(double[] array) {
412412
checkNotNull(array);
@@ -420,7 +420,7 @@ public static void sortDescending(double[] array) {
420420
* <p>Note that this method uses the total order imposed by {@link Double#compare}, which treats
421421
* all NaN values as equal and 0.0 as greater than -0.0.
422422
*
423-
* @since NEXT
423+
* @since 23.1
424424
*/
425425
public static void sortDescending(double[] array, int fromIndex, int toIndex) {
426426
checkNotNull(array);
@@ -433,7 +433,7 @@ public static void sortDescending(double[] array, int fromIndex, int toIndex) {
433433
* Reverses the elements of {@code array}. This is equivalent to {@code
434434
* Collections.reverse(Doubles.asList(array))}, but is likely to be more efficient.
435435
*
436-
* @since NEXT
436+
* @since 23.1
437437
*/
438438
public static void reverse(double[] array) {
439439
checkNotNull(array);
@@ -448,7 +448,7 @@ public static void reverse(double[] array) {
448448
*
449449
* @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
450450
* {@code toIndex > fromIndex}
451-
* @since NEXT
451+
* @since 23.1
452452
*/
453453
public static void reverse(double[] array, int fromIndex, int toIndex) {
454454
checkNotNull(array);

android/guava/src/com/google/common/primitives/Floats.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public String toString() {
404404
* <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
405405
* all NaN values as equal and 0.0 as greater than -0.0.
406406
*
407-
* @since NEXT
407+
* @since 23.1
408408
*/
409409
public static void sortDescending(float[] array) {
410410
checkNotNull(array);
@@ -418,7 +418,7 @@ public static void sortDescending(float[] array) {
418418
* <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
419419
* all NaN values as equal and 0.0 as greater than -0.0.
420420
*
421-
* @since NEXT
421+
* @since 23.1
422422
*/
423423
public static void sortDescending(float[] array, int fromIndex, int toIndex) {
424424
checkNotNull(array);
@@ -431,7 +431,7 @@ public static void sortDescending(float[] array, int fromIndex, int toIndex) {
431431
* Reverses the elements of {@code array}. This is equivalent to {@code
432432
* Collections.reverse(Floats.asList(array))}, but is likely to be more efficient.
433433
*
434-
* @since NEXT
434+
* @since 23.1
435435
*/
436436
public static void reverse(float[] array) {
437437
checkNotNull(array);
@@ -446,7 +446,7 @@ public static void reverse(float[] array) {
446446
*
447447
* @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
448448
* {@code toIndex > fromIndex}
449-
* @since NEXT
449+
* @since 23.1
450450
*/
451451
public static void reverse(float[] array, int fromIndex, int toIndex) {
452452
checkNotNull(array);

0 commit comments

Comments
 (0)