(AnnotationMirror mapKeyAnnotation, Types types)
| 90 | } |
| 91 | |
| 92 | static TypeMirror mapKeyType(AnnotationMirror mapKeyAnnotation, Types types) { |
| 93 | return unwrapValue(mapKeyAnnotation).isPresent() |
| 94 | ? getUnwrappedMapKeyType(mapKeyAnnotation.getAnnotationType(), types) |
| 95 | : mapKeyAnnotation.getAnnotationType(); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Returns the map key type for an unwrapped {@link MapKey} annotation type. If the single member |
no test coverage detected