1616
1717import  static  com .google .common .base .Preconditions .checkNotNull ;
1818
19- import  com .google .common .annotations .Beta ;
2019import  com .google .common .annotations .GwtCompatible ;
2120import  com .google .common .annotations .GwtIncompatible ;
2221import  com .google .common .base .Function ;
@@ -163,7 +162,6 @@ public Iterator<E> iterator() {
163162   * 
164163   * @since 20.0 (since 18.0 as an overload of {@code of}) 
165164   */ 
166-   @ Beta 
167165  public  static  <E  extends  @ Nullable  Object > FluentIterable <E > from (E [] elements ) {
168166    return  from (Arrays .asList (elements ));
169167  }
@@ -196,7 +194,6 @@ public Iterator<E> iterator() {
196194   * 
197195   * @since 20.0 
198196   */ 
199-   @ Beta 
200197  public  static  <T  extends  @ Nullable  Object > FluentIterable <T > concat (
201198      Iterable <? extends  T > a , Iterable <? extends  T > b ) {
202199    return  concatNoDefensiveCopy (a , b );
@@ -215,7 +212,6 @@ public Iterator<E> iterator() {
215212   * 
216213   * @since 20.0 
217214   */ 
218-   @ Beta 
219215  public  static  <T  extends  @ Nullable  Object > FluentIterable <T > concat (
220216      Iterable <? extends  T > a , Iterable <? extends  T > b , Iterable <? extends  T > c ) {
221217    return  concatNoDefensiveCopy (a , b , c );
@@ -235,7 +231,6 @@ public Iterator<E> iterator() {
235231   * 
236232   * @since 20.0 
237233   */ 
238-   @ Beta 
239234  public  static  <T  extends  @ Nullable  Object > FluentIterable <T > concat (
240235      Iterable <? extends  T > a ,
241236      Iterable <? extends  T > b ,
@@ -259,7 +254,6 @@ public Iterator<E> iterator() {
259254   * @throws NullPointerException if any of the provided iterables is {@code null} 
260255   * @since 20.0 
261256   */ 
262-   @ Beta 
263257  public  static  <T  extends  @ Nullable  Object > FluentIterable <T > concat (
264258      Iterable <? extends  T >... inputs ) {
265259    return  concatNoDefensiveCopy (Arrays .copyOf (inputs , inputs .length ));
@@ -279,7 +273,6 @@ public Iterator<E> iterator() {
279273   * 
280274   * @since 20.0 
281275   */ 
282-   @ Beta 
283276  public  static  <T  extends  @ Nullable  Object > FluentIterable <T > concat (
284277      final  Iterable <? extends  Iterable <? extends  T >> inputs ) {
285278    checkNotNull (inputs );
@@ -319,7 +312,6 @@ public Iterator<? extends T> get(int i) {
319312   * 
320313   * @since 20.0 
321314   */ 
322-   @ Beta 
323315  public  static  <E  extends  @ Nullable  Object > FluentIterable <E > of () {
324316    return  FluentIterable .from (Collections .<E >emptyList ());
325317  }
@@ -332,7 +324,6 @@ public Iterator<? extends T> get(int i) {
332324   * 
333325   * @since 20.0 
334326   */ 
335-   @ Beta 
336327  public  static  <E  extends  @ Nullable  Object > FluentIterable <E > of (
337328      @ ParametricNullness  E  element , E ... elements ) {
338329    return  from (Lists .asList (element , elements ));
@@ -401,7 +392,6 @@ public final FluentIterable<E> cycle() {
401392   * 
402393   * @since 18.0 
403394   */ 
404-   @ Beta 
405395  public  final  FluentIterable <E > append (Iterable <? extends  E > other ) {
406396    return  FluentIterable .concat (getDelegate (), other );
407397  }
@@ -414,7 +404,6 @@ public final FluentIterable<E> append(Iterable<? extends E> other) {
414404   * 
415405   * @since 18.0 
416406   */ 
417-   @ Beta 
418407  public  final  FluentIterable <E > append (E ... elements ) {
419408    return  FluentIterable .concat (getDelegate (), Arrays .asList (elements ));
420409  }
@@ -835,7 +824,6 @@ public final <C extends Collection<? super E>> C copyInto(C collection) {
835824   * 
836825   * @since 18.0 
837826   */ 
838-   @ Beta 
839827  public  final  String  join (Joiner  joiner ) {
840828    return  joiner .join (this );
841829  }
0 commit comments