Skip to content
This repository was archived by the owner on Jun 12, 2025. It is now read-only.

Commit d0d706f

Browse files
committed
Fixed out-of-range error with Double type
1 parent dcf5525 commit d0d706f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>pl.timsixth</groupId>
88
<artifactId>T-DataBasesAPI</artifactId>
9-
<version>1.9.1</version>
9+
<version>1.9.2</version>
1010

1111
<repositories>
1212
<repository>

src/main/java/pl/timsixth/databasesapi/database/structure/datatype/DataTypes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ private DataTypes() {
1111
public static final IDataType INT = new IntDataType(11);
1212
public static final IDataType VARCHAR = new VarcharDataType(255);
1313
public static final IDataType INTEGER = new IntegerDataType();
14-
public static final IDataType DOUBLE = new DoubleDataType(5.2);
14+
public static final IDataType DOUBLE = new DoubleDataType(20.2);
1515
public static final IDataType DATETIME = new DatetimeDataType();
1616
public static final IDataType BOOLEAN = new BooleanDataType();
1717
}

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: T-DatabasesApi
22
main: pl.timsixth.databasesapi.DatabasesApiPlugin
3-
version: '1.9.1'
3+
version: '1.9.2'
44
author: timsixth

0 commit comments

Comments
 (0)