spring-cloud-gcp-data-datastore/src/main/java/com/google/cloud/spring/data/datastore/core/util/ValueUtil.java [39:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static Class boxIfNeeded(Class propertyType) {
    if (propertyType == null) {
      return null;
    }
    return propertyType.isPrimitive()
        ? Array.get(Array.newInstance(propertyType, 1), 0).getClass()
        : propertyType;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spring-cloud-gcp-data-spanner/src/main/java/com/google/cloud/spring/data/spanner/core/convert/ConversionUtils.java [38:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static Class boxIfNeeded(Class propertyType) {
    if (propertyType == null) {
      return null;
    }
    return propertyType.isPrimitive()
        ? Array.get(Array.newInstance(propertyType, 1), 0).getClass()
        : propertyType;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



