Skip to content

Commit

Permalink
Rename Long interfaces to Integer following the TypeQL updates
Browse files Browse the repository at this point in the history
  • Loading branch information
farost committed Dec 20, 2024
1 parent eb68124 commit 6ac1a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/Printer.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private String conceptDisplayString(Concept concept, Transaction tx) {

private String valueDisplayString(Value value) {
Object rawValue;
if (value.isLong()) rawValue = value.getLong();
if (value.isInteger()) rawValue = value.getInteger();
else if (value.isDouble()) rawValue = value.getDouble();
else if (value.isDecimal()) rawValue = value.getDecimal();
else if (value.isBoolean()) rawValue = value.getBoolean();
Expand Down

0 comments on commit 6ac1a6b

Please sign in to comment.