Skip to content

Commit

Permalink
add javadoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Feb 9, 2025
1 parent 720d3f4 commit 1d2b67a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/esaulpaugh/headlong/abi/ABIParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public ABIParser(Set<TypeEnum> types) {
this(ABIType.FLAGS_NONE, types);
}

/**
* @param flags flags with which to initialize the parsed {@link ABIObject}s. {@link ABIType#FLAGS_NONE} or {@link ABIType#FLAG_LEGACY_DECODE}
* @param types {@link Set} of {@link ABIObject} types to parse. Objects whose type is not in the set will be skipped
*/
public ABIParser(int flags, Set<TypeEnum> types) {
if (flags != ABIType.FLAGS_NONE
&& flags != ABIType.FLAG_LEGACY_DECODE) {
Expand Down

0 comments on commit 1d2b67a

Please sign in to comment.