Skip to content

Commit

Permalink
update callsite to match refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Aug 27, 2024
1 parent eeb9bb0 commit 7d08b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/esaulpaugh/headlong/abi/TypeFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ private static TupleType<?> parseTupleType(final String rawTypeStr, final String
case ')':
case ',': return null;
case '(': argEnd = nextTerminator(rawTypeStr, findSubtupleEnd(rawTypeStr, argStart + 1)); break;
default: argEnd = nextTerminator(rawTypeStr, argStart);
default: argEnd = nextTerminator(rawTypeStr, argStart + 1);
}
final ABIType<?> e = buildUnchecked(rawTypeStr.substring(argStart, argEnd), null, null, flags);
canonicalType.append(e.canonicalType).append(',');
Expand Down

0 comments on commit 7d08b5b

Please sign in to comment.