1717import static com .google .common .base .Preconditions .checkNotNull ;
1818import static java .util .Objects .requireNonNull ;
1919
20- import com .google .common .annotations .Beta ;
2120import com .google .common .annotations .GwtCompatible ;
2221import com .google .errorprone .annotations .CanIgnoreReturnValue ;
2322import java .io .IOException ;
@@ -366,7 +365,6 @@ public StringBuilder appendTo(StringBuilder builder, Map<?, ?> map) {
366365 *
367366 * @since 10.0
368367 */
369- @ Beta
370368 @ CanIgnoreReturnValue
371369 public <A extends Appendable > A appendTo (A appendable , Iterable <? extends Entry <?, ?>> entries )
372370 throws IOException {
@@ -379,7 +377,6 @@ public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<
379377 *
380378 * @since 11.0
381379 */
382- @ Beta
383380 @ CanIgnoreReturnValue
384381 public <A extends Appendable > A appendTo (A appendable , Iterator <? extends Entry <?, ?>> parts )
385382 throws IOException {
@@ -407,7 +404,6 @@ public <A extends Appendable> A appendTo(A appendable, Iterator<? extends Entry<
407404 *
408405 * @since 10.0
409406 */
410- @ Beta
411407 @ CanIgnoreReturnValue
412408 public StringBuilder appendTo (StringBuilder builder , Iterable <? extends Entry <?, ?>> entries ) {
413409 return appendTo (builder , entries .iterator ());
@@ -420,7 +416,6 @@ public StringBuilder appendTo(StringBuilder builder, Iterable<? extends Entry<?,
420416 *
421417 * @since 11.0
422418 */
423- @ Beta
424419 @ CanIgnoreReturnValue
425420 public StringBuilder appendTo (StringBuilder builder , Iterator <? extends Entry <?, ?>> entries ) {
426421 try {
@@ -445,7 +440,6 @@ public String join(Map<?, ?> map) {
445440 *
446441 * @since 10.0
447442 */
448- @ Beta
449443 public String join (Iterable <? extends Entry <?, ?>> entries ) {
450444 return join (entries .iterator ());
451445 }
@@ -456,7 +450,6 @@ public String join(Iterable<? extends Entry<?, ?>> entries) {
456450 *
457451 * @since 11.0
458452 */
459- @ Beta
460453 public String join (Iterator <? extends Entry <?, ?>> entries ) {
461454 return appendTo (new StringBuilder (), entries ).toString ();
462455 }
0 commit comments