Skip to content

Commit 1840de1

Browse files
committed
Fix: Provider Java file : By Dwight Blue
1 parent 96ddfd4 commit 1840de1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lesson_09/types/types_app/src/main/java/com/codedifferently/lesson9/dataprovider/DwightBlueProvider.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.codedifferently.lesson9.dataprovider;
22

33
import java.util.Map;
4-
54
import org.springframework.stereotype.Service;
65

76
@Service
@@ -14,7 +13,7 @@ public Map<String, Class> getColumnTypeByName() {
1413
return Map.of(
1514
"column1", Long.class,
1615
"column2", Boolean.class,
17-
"column3", Float .class,
16+
"column3", Float.class,
1817
"column4", String.class,
1918
"column5", Double.class,
2019
"column6", Short.class,

0 commit comments

Comments
 (0)