File tree Expand file tree Collapse file tree 4 files changed +0
-10
lines changed
android/guava/src/com/google/common/reflect
guava/src/com/google/common/reflect Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 1616
1717import static com .google .common .base .Preconditions .checkNotNull ;
1818
19- import com .google .common .annotations .Beta ;
2019import com .google .common .collect .ImmutableList ;
2120import com .google .errorprone .annotations .CanIgnoreReturnValue ;
2221import com .google .errorprone .annotations .DoNotCall ;
6463 * @since 14.0 (no longer implements {@link AccessibleObject} or {@code GenericDeclaration} since
6564 * 31.0)
6665 */
67- @ Beta
6866@ ElementTypesAreNonnullByDefault
6967public abstract class Invokable <T , R > implements AnnotatedElement , Member {
7068 private final AccessibleObject accessibleObject ;
Original file line number Diff line number Diff line change 1919import static com .google .common .base .Preconditions .checkState ;
2020import static java .util .Objects .requireNonNull ;
2121
22- import com .google .common .annotations .Beta ;
2322import com .google .common .annotations .VisibleForTesting ;
2423import com .google .common .base .Joiner ;
2524import com .google .common .base .Predicate ;
@@ -590,7 +589,6 @@ public final TypeToken<?> getComponentType() {
590589 *
591590 * @since 14.0
592591 */
593- @ Beta
594592 public final Invokable <T , Object > method (Method method ) {
595593 checkArgument (
596594 this .someRawTypeIsSubclassOf (method .getDeclaringClass ()),
@@ -630,7 +628,6 @@ public String toString() {
630628 *
631629 * @since 14.0
632630 */
633- @ Beta
634631 public final Invokable <T , T > constructor (Constructor <?> constructor ) {
635632 checkArgument (
636633 constructor .getDeclaringClass () == getRawType (),
Original file line number Diff line number Diff line change 1616
1717import static com .google .common .base .Preconditions .checkNotNull ;
1818
19- import com .google .common .annotations .Beta ;
2019import com .google .common .collect .ImmutableList ;
2120import com .google .errorprone .annotations .CanIgnoreReturnValue ;
2221import java .lang .annotation .Annotation ;
6362 * @since 14.0 (no longer implements {@link AccessibleObject} or {@code GenericDeclaration} since
6463 * 31.0)
6564 */
66- @ Beta
6765@ ElementTypesAreNonnullByDefault
6866public abstract class Invokable <T , R > implements AnnotatedElement , Member {
6967 private final AccessibleObject accessibleObject ;
Original file line number Diff line number Diff line change 1919import static com .google .common .base .Preconditions .checkState ;
2020import static java .util .Objects .requireNonNull ;
2121
22- import com .google .common .annotations .Beta ;
2322import com .google .common .annotations .VisibleForTesting ;
2423import com .google .common .base .Joiner ;
2524import com .google .common .base .Predicate ;
@@ -590,7 +589,6 @@ public final TypeToken<?> getComponentType() {
590589 *
591590 * @since 14.0
592591 */
593- @ Beta
594592 public final Invokable <T , Object > method (Method method ) {
595593 checkArgument (
596594 this .someRawTypeIsSubclassOf (method .getDeclaringClass ()),
@@ -630,7 +628,6 @@ public String toString() {
630628 *
631629 * @since 14.0
632630 */
633- @ Beta
634631 public final Invokable <T , T > constructor (Constructor <?> constructor ) {
635632 checkArgument (
636633 constructor .getDeclaringClass () == getRawType (),
You can’t perform that action at this time.
0 commit comments