17
17
import static com .google .common .base .Preconditions .checkNotNull ;
18
18
import static java .util .Objects .requireNonNull ;
19
19
20
- import com .google .common .annotations .Beta ;
21
20
import com .google .common .annotations .GwtCompatible ;
22
21
import com .google .errorprone .annotations .CanIgnoreReturnValue ;
23
22
import java .io .IOException ;
@@ -366,7 +365,6 @@ public StringBuilder appendTo(StringBuilder builder, Map<?, ?> map) {
366
365
*
367
366
* @since 10.0
368
367
*/
369
- @ Beta
370
368
@ CanIgnoreReturnValue
371
369
public <A extends Appendable > A appendTo (A appendable , Iterable <? extends Entry <?, ?>> entries )
372
370
throws IOException {
@@ -379,7 +377,6 @@ public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<
379
377
*
380
378
* @since 11.0
381
379
*/
382
- @ Beta
383
380
@ CanIgnoreReturnValue
384
381
public <A extends Appendable > A appendTo (A appendable , Iterator <? extends Entry <?, ?>> parts )
385
382
throws IOException {
@@ -407,7 +404,6 @@ public <A extends Appendable> A appendTo(A appendable, Iterator<? extends Entry<
407
404
*
408
405
* @since 10.0
409
406
*/
410
- @ Beta
411
407
@ CanIgnoreReturnValue
412
408
public StringBuilder appendTo (StringBuilder builder , Iterable <? extends Entry <?, ?>> entries ) {
413
409
return appendTo (builder , entries .iterator ());
@@ -420,7 +416,6 @@ public StringBuilder appendTo(StringBuilder builder, Iterable<? extends Entry<?,
420
416
*
421
417
* @since 11.0
422
418
*/
423
- @ Beta
424
419
@ CanIgnoreReturnValue
425
420
public StringBuilder appendTo (StringBuilder builder , Iterator <? extends Entry <?, ?>> entries ) {
426
421
try {
@@ -445,7 +440,6 @@ public String join(Map<?, ?> map) {
445
440
*
446
441
* @since 10.0
447
442
*/
448
- @ Beta
449
443
public String join (Iterable <? extends Entry <?, ?>> entries ) {
450
444
return join (entries .iterator ());
451
445
}
@@ -456,7 +450,6 @@ public String join(Iterable<? extends Entry<?, ?>> entries) {
456
450
*
457
451
* @since 11.0
458
452
*/
459
- @ Beta
460
453
public String join (Iterator <? extends Entry <?, ?>> entries ) {
461
454
return appendTo (new StringBuilder (), entries ).toString ();
462
455
}
0 commit comments