Skip to content

Commit

Permalink
javadoc - Adding default constructor and javadoc for :plugin-api (hyp…
Browse files Browse the repository at this point in the history
…erledger#7072)

Signed-off-by: Usman Saleem <usman@usmans.info>
Signed-off-by: Justin Florentine <justin+github@florentine.us>
  • Loading branch information
usmansaleem authored and jflo committed Jun 10, 2024
1 parent 1d9c6b7 commit 1c26167
Show file tree
Hide file tree
Showing 2 changed files with 4 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 @@ -70,7 +70,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 = 'lRmKnDTcM8T+0wZqTBQYIK9SLnyxgUNQ9Cue93VMgwE='
knownHash = 'w+IKkNGNQSO4AECcQMEeYX0TriGTdBSFSx5e7e10yuk='
}
check.dependsOn('checkAPIChanges')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ public static Builder builder() {
public static class Builder {
List<TransactionTraceResult> transactionTraceResults = new ArrayList<>();

/** Constructs a new builder instance. */
private Builder() {}

/**
* Adds a transaction trace result to the builder.
*
Expand Down

0 comments on commit 1c26167

Please sign in to comment.