File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
src/main/java/org/springframework/data/r2dbc/convert Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 1515 */
1616package org .springframework .data .r2dbc .convert ;
1717
18- import io .r2dbc .spi .ColumnMetadata ;
1918import io .r2dbc .spi .Row ;
2019import io .r2dbc .spi .RowMetadata ;
2120
2221import java .util .ArrayList ;
2322import java .util .Collection ;
2423import java .util .Collections ;
25- import java .util .LinkedHashMap ;
2624import java .util .List ;
27- import java .util .Map ;
2825import java .util .Optional ;
2926import java .util .function .BiFunction ;
3027
@@ -606,17 +603,6 @@ private static Collection<?> asCollection(Object source) {
606603 return source .getClass ().isArray () ? CollectionUtils .arrayToList (source ) : Collections .singleton (source );
607604 }
608605
609- private static Map <String , ColumnMetadata > createMetadataMap (RowMetadata metadata ) {
610-
611- Map <String , ColumnMetadata > columns = new LinkedHashMap <>();
612-
613- for (ColumnMetadata column : metadata .getColumnMetadatas ()) {
614- columns .put (column .getName (), column );
615- }
616-
617- return columns ;
618- }
619-
620606 private static class RowParameterValueProvider implements ParameterValueProvider <RelationalPersistentProperty > {
621607
622608 private final Row resultSet ;
You can’t perform that action at this time.
0 commit comments