Skip to content

Commit

Permalink
Version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Arraying authored and Arraying committed Mar 3, 2018
1 parent da00b88 commit 4f2aade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.arraying</groupId>
<artifactId>Kotys</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<build>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/arraying/kotys/JSONTokenizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private void readNumber()
if(decimal) {
value = Double.valueOf(number);
} else {
value = Integer.valueOf(number);
value = Long.valueOf(number);
}
push(value, decimal ? Type.TYPE_DOUBLE : Type.TYPE_INTEGER);
}
Expand Down

0 comments on commit 4f2aade

Please sign in to comment.