(Type subtype)
| 1031 | |
| 1032 | |
| 1033 | boolean isSupertypeOf(Type subtype) { |
| 1034 | TypeToken<?> type = of(subtype); |
| 1035 | for (Type bound : bounds) { |
| 1036 | if (type.isSubtypeOf(bound) == target) { |
| 1037 | return target; |
| 1038 | } |
| 1039 | } |
| 1040 | return !target; |
| 1041 | } |
| 1042 | } |
| 1043 | |
| 1044 |
nothing calls this directly
no test coverage detected