File tree 4 files changed +0
-10
lines changed
android/guava/src/com/google/common/reflect
guava/src/com/google/common/reflect
4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 16
16
17
17
import static com .google .common .base .Preconditions .checkNotNull ;
18
18
19
- import com .google .common .annotations .Beta ;
20
19
import com .google .common .collect .ImmutableList ;
21
20
import com .google .errorprone .annotations .CanIgnoreReturnValue ;
22
21
import com .google .errorprone .annotations .DoNotCall ;
64
63
* @since 14.0 (no longer implements {@link AccessibleObject} or {@code GenericDeclaration} since
65
64
* 31.0)
66
65
*/
67
- @ Beta
68
66
@ ElementTypesAreNonnullByDefault
69
67
public abstract class Invokable <T , R > implements AnnotatedElement , Member {
70
68
private final AccessibleObject accessibleObject ;
Original file line number Diff line number Diff line change 19
19
import static com .google .common .base .Preconditions .checkState ;
20
20
import static java .util .Objects .requireNonNull ;
21
21
22
- import com .google .common .annotations .Beta ;
23
22
import com .google .common .annotations .VisibleForTesting ;
24
23
import com .google .common .base .Joiner ;
25
24
import com .google .common .base .Predicate ;
@@ -590,7 +589,6 @@ public final TypeToken<?> getComponentType() {
590
589
*
591
590
* @since 14.0
592
591
*/
593
- @ Beta
594
592
public final Invokable <T , Object > method (Method method ) {
595
593
checkArgument (
596
594
this .someRawTypeIsSubclassOf (method .getDeclaringClass ()),
@@ -630,7 +628,6 @@ public String toString() {
630
628
*
631
629
* @since 14.0
632
630
*/
633
- @ Beta
634
631
public final Invokable <T , T > constructor (Constructor <?> constructor ) {
635
632
checkArgument (
636
633
constructor .getDeclaringClass () == getRawType (),
Original file line number Diff line number Diff line change 16
16
17
17
import static com .google .common .base .Preconditions .checkNotNull ;
18
18
19
- import com .google .common .annotations .Beta ;
20
19
import com .google .common .collect .ImmutableList ;
21
20
import com .google .errorprone .annotations .CanIgnoreReturnValue ;
22
21
import java .lang .annotation .Annotation ;
63
62
* @since 14.0 (no longer implements {@link AccessibleObject} or {@code GenericDeclaration} since
64
63
* 31.0)
65
64
*/
66
- @ Beta
67
65
@ ElementTypesAreNonnullByDefault
68
66
public abstract class Invokable <T , R > implements AnnotatedElement , Member {
69
67
private final AccessibleObject accessibleObject ;
Original file line number Diff line number Diff line change 19
19
import static com .google .common .base .Preconditions .checkState ;
20
20
import static java .util .Objects .requireNonNull ;
21
21
22
- import com .google .common .annotations .Beta ;
23
22
import com .google .common .annotations .VisibleForTesting ;
24
23
import com .google .common .base .Joiner ;
25
24
import com .google .common .base .Predicate ;
@@ -590,7 +589,6 @@ public final TypeToken<?> getComponentType() {
590
589
*
591
590
* @since 14.0
592
591
*/
593
- @ Beta
594
592
public final Invokable <T , Object > method (Method method ) {
595
593
checkArgument (
596
594
this .someRawTypeIsSubclassOf (method .getDeclaringClass ()),
@@ -630,7 +628,6 @@ public String toString() {
630
628
*
631
629
* @since 14.0
632
630
*/
633
- @ Beta
634
631
public final Invokable <T , T > constructor (Constructor <?> constructor ) {
635
632
checkArgument (
636
633
constructor .getDeclaringClass () == getRawType (),
You can’t perform that action at this time.
0 commit comments