Skip to content

Commit

Permalink
Fix cell value type check (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmafo authored Apr 6, 2021
1 parent e4094dd commit 3436e30
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 @@

<groupId>com.erikmafo</groupId>
<artifactId>bigtableviewer</artifactId>
<version>0.2.12</version>
<version>0.2.13</version>
<packaging>jar</packaging>
<name>bigtableviewer</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Object convert(BigtableCell cell) {
public boolean isNumberCellDefinition(BigtableCell cell) {
var cellDefinition = getCellDefinition(cell);

switch (cellDefinition.getValueType()) {
switch (cellDefinition.getValueType().toUpperCase()) {
case ValueTypeConstants.DOUBLE:
case ValueTypeConstants.INTEGER:
case ValueTypeConstants.FLOAT:
Expand Down

0 comments on commit 3436e30

Please sign in to comment.