Skip to content

Commit

Permalink
eliminate need for synthetic accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Feb 28, 2025
1 parent 4e13354 commit e1b91b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/esaulpaugh/headlong/abi/ABIParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
/** Parses JSON arrays containing contract ABI descriptions. Object types are {@link Function}, {@link Event}, and {@link ContractError}. */
public final class ABIParser {

private final int flags;
private final Set<TypeEnum> types;
private final transient boolean requiresDigest;
final int flags;
final Set<TypeEnum> types;
final transient boolean requiresDigest;

public ABIParser() {
this(ABIType.FLAGS_NONE, ABIJSON.ALL);
Expand Down

0 comments on commit e1b91b8

Please sign in to comment.