Skip to content

Commit

Permalink
chore: use correct Nullable annotation in 'smart-contract-service-imp…
Browse files Browse the repository at this point in the history
…l' (#15373)

Signed-off-by: Jendrik Johannes <jendrik.johannes@gmail.com>
  • Loading branch information
jjohannes authored Sep 9, 2024
1 parent 011f509 commit 1668e85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import com.hedera.node.app.spi.signatures.SignatureVerifier;
import dagger.BindsInstance;
import dagger.Component;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.time.InstantSource;
import java.util.List;
import java.util.function.Supplier;
Expand All @@ -34,7 +35,7 @@ interface Factory {
ContractServiceComponent create(
@BindsInstance InstantSource instantSource,
@BindsInstance SignatureVerifier signatureVerifier,
@BindsInstance @javax.annotation.Nullable Supplier<List<OperationTracer>> addOnTracers);
@BindsInstance @Nullable Supplier<List<OperationTracer>> addOnTracers);
}

ContractHandlers handlers();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
requires transitive com.hedera.pbj.runtime;
requires transitive dagger;
requires transitive headlong;
requires transitive java.annotation;
requires transitive javax.inject;
requires transitive org.apache.logging.log4j;
requires transitive org.hyperledger.besu.datatypes;
Expand Down

0 comments on commit 1668e85

Please sign in to comment.