Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: garyschulte <garyschulte@gmail.com>
  • Loading branch information
garyschulte committed May 9, 2023
1 parent 3587329 commit c9fd7af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Calculated : ${currentHash}
tasks.register('checkAPIChanges', FileStateChecker) {
description = "Checks that the API for the Plugin-API project does not change without deliberate thought"
files = sourceSets.main.allJava.files
knownHash = 'ShN4Vv2TYtTP6MhUex1whS6XAgYzK7itvJl3Q4VYOA0='
knownHash = 'nQ4sgzgeGXts5YKfNUQN0urTXtGGk2QfzB9V6BDNAYc='
}
check.dependsOn('checkAPIChanges')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,11 @@ public interface TrieLogProvider {
<T extends TrieLog.LogTuple<?>> List<TrieLogRangePair> getTrieLogsByRange(
long fromBlockNumber, long toBlockNumber);

/**
* Block and TrieLog layer composition, used for returning a range of TrieLog layers.
*
* @param blockNumber the block number
* @param trieLog the associated TrieLog layer
*/
record TrieLogRangePair(long blockNumber, TrieLog trieLog) {}
}

0 comments on commit c9fd7af

Please sign in to comment.