Skip to content

Commit

Permalink
Fix Javadoc warning for org.web3j.protocol.core.Batcher (#1323)
Browse files Browse the repository at this point in the history
> Task :core:javadoc
/Users/kkn/src/github.com/web3j/web3j/core/src/main/java/org/web3j/protocol/core/Batcher.java:18: warning: no @return
    BatchRequest newBatch();
                 ^
1 warning

BUILD SUCCESSFUL in 5s
  • Loading branch information
kare authored Jan 7, 2021
1 parent c19e20e commit be12932
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/src/main/java/org/web3j/protocol/core/Batcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

public interface Batcher {

/** Create a new {@link BatchRequest}. */
/**
* Create a new {@link BatchRequest}.
*
* @return New BatchRequest.
*/
BatchRequest newBatch();
}

0 comments on commit be12932

Please sign in to comment.