@@ -37,14 +37,14 @@ final class LogQueryBuilderImpl implements LogQuery.Builder {
3737 }
3838
3939 @ Override
40- public @ NotNull LogTopicSingle withTopic (String topic0 ) {
40+ public @ NotNull LogTopicSingle withTopic (@ NotNull String topic0 ) {
4141 if (BasicUtils .isNotHex (topic0 ))
4242 throw new ErtherScanLogQueryException ("topic0 can not be empty or non hex." );
4343 return new LogTopicSingle (address , startBlock , endBlock , topic0 );
4444 }
4545
4646 @ Override
47- public @ NotNull LogTopicTuple withTopic (String topic0 , String topic1 ) {
47+ public @ NotNull LogTopicTuple withTopic (@ NotNull String topic0 , @ NotNull String topic1 ) {
4848 if (BasicUtils .isNotHex (topic0 ))
4949 throw new ErtherScanLogQueryException ("topic0 can not be empty or non hex." );
5050 if (BasicUtils .isNotHex (topic1 ))
@@ -53,7 +53,7 @@ final class LogQueryBuilderImpl implements LogQuery.Builder {
5353 }
5454
5555 @ Override
56- public @ NotNull LogTopicTriple withTopic (String topic0 , String topic1 , String topic2 ) {
56+ public @ NotNull LogTopicTriple withTopic (@ NotNull String topic0 , @ NotNull String topic1 , @ NotNull String topic2 ) {
5757 if (BasicUtils .isNotHex (topic0 ))
5858 throw new ErtherScanLogQueryException ("topic0 can not be empty or non hex." );
5959 if (BasicUtils .isNotHex (topic1 ))
@@ -64,7 +64,8 @@ final class LogQueryBuilderImpl implements LogQuery.Builder {
6464 }
6565
6666 @ Override
67- public @ NotNull LogTopicQuadro withTopic (String topic0 , String topic1 , String topic2 , String topic3 ) {
67+ public @ NotNull LogTopicQuadro
68+ withTopic (@ NotNull String topic0 , @ NotNull String topic1 , @ NotNull String topic2 , @ NotNull String topic3 ) {
6869 if (BasicUtils .isNotHex (topic0 ))
6970 throw new ErtherScanLogQueryException ("topic0 can not be empty or non hex." );
7071 if (BasicUtils .isNotHex (topic1 ))
0 commit comments