Skip to content

Commit 516ffb3

Browse files
committed
consistency
1 parent 94a00cc commit 516ffb3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client-v2/src/main/java/com/clickhouse/client/api/DataTypeUtils.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
import com.clickhouse.data.ClickHouseDataType;
1111

12-
import static java.time.temporal.ChronoField.NANO_OF_SECOND;
13-
1412
public class DataTypeUtils {
1513

1614
/**
@@ -30,7 +28,7 @@ public class DataTypeUtils {
3028

3129
private static final DateTimeFormatter INSTANT_FORMATTER = new DateTimeFormatterBuilder()
3230
.appendValue(ChronoField.INSTANT_SECONDS)
33-
.appendFraction(NANO_OF_SECOND, 9, 9, true)
31+
.appendFraction(ChronoField.NANO_OF_SECOND, 9, 9, true)
3432
.toFormatter();
3533

3634
/**

0 commit comments

Comments
 (0)