Skip to content

Commit e35fdc2

Browse files
committed
renamed DriveProperties to DriverProperties
1 parent e8479d9 commit e35fdc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriveProperties.java renamed to jdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriverProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
/**
44
* JDBC driver specific properties. Do not include any ClickHouse client properties here.
55
*/
6-
public enum DriveProperties {
6+
public enum DriverProperties {
77

88
PLACEHOLDER("placeholder", "Placeholder for unknown properties");
99

1010
private final String key;
1111

1212
private final String description;
1313

14-
DriveProperties(String key, String description) {
14+
DriverProperties(String key, String description) {
1515
this.key = key;
1616
this.description = description;
1717
}

0 commit comments

Comments
 (0)