Skip to content

Commit

Permalink
add javadoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Jul 27, 2024
1 parent 6ef20b5 commit c85b1ec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/esaulpaugh/headlong/abi/Tuple.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public class Tuple implements Iterable<Object> {
this.elements = elements;
}

/**
* @see Single#of(Object)
* @return the pair
*/
public static Tuple of() {
return Tuple.EMPTY;
}
Expand Down

0 comments on commit c85b1ec

Please sign in to comment.