(Object[] array)
| 8103 | } |
| 8104 | |
| 8105 | @SuppressWarnings("removal") |
| 8106 | static final DataType<?> componentDataType(Object[] array) { |
| 8107 | if (!isEmpty(array) && array[0] instanceof Field<?> f) { |
| 8108 | return f.getDataType(); |
| 8109 | } |
| 8110 | else |
| 8111 | return DSL.getDataType(array.getClass().getComponentType()); |
| 8112 | } |
| 8113 | |
| 8114 | static final Object[] mostSpecificArray(Object[] array) { |
| 8115 | if (isEmpty(array)) |
no test coverage detected