If type is a primitive type, returns the boxed equivalent; otherwise returns type.
(TypeMirror type, Types types)
| 87 | * type}. |
| 88 | */ |
| 89 | private static TypeMirror boxedType(TypeMirror type, Types types) { |
| 90 | return type.getKind().isPrimitive() |
| 91 | ? types.boxedClass(MoreTypes.asPrimitiveType(type)).asType() |
| 92 | : type; |
| 93 | } |
| 94 | |
| 95 | @Override |
| 96 | public final String toString() { |
no test coverage detected