Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ public static String parseLabelValue(Common.Value value, GraphLabelType type) {
return parseLabelValue(value.getI32(), type);
case I64:
return parseLabelValue(value.getI64(), type);
case NONE:
return null;
default:
throw new IllegalArgumentException(
"cannot parse label value with type=" + value.getItemCase().name());
Expand Down
Loading