(TypeMirror type)
| 179 | ImmutableSet.of(ListenableFuture.class, FluentFuture.class); |
| 180 | |
| 181 | static boolean isFutureType(TypeMirror type) { |
| 182 | return FUTURE_TYPES.stream().anyMatch(t -> MoreTypes.isTypeOf(t, type)); |
| 183 | } |
| 184 | |
| 185 | static boolean hasTypeVariable(TypeMirror type) { |
| 186 | return type.accept( |
no test coverage detected