Skip to content

Fix javadoc param names. #4179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ public AccumulatorBuilder init(String function) {
/**
* Define the optional {@code initArgs} for the {@link #init(String)} function.
*
* @param function must not be {@literal null}.
* @param args must not be {@literal null}.
* @return this.
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ public void useGeneratedNameShouldGenerateAnIndexName() {
/**
* Returns whether an index with the given name exists for the given entity type.
*
* @param indexName
* @param entityType
* @param type
* @return
*/
private boolean hasIndexOfType(Class<?> entityType, final String type) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static void awaitSubscription(Subscription subscription) throws InterruptedExcep
* Wait for all {@link Subscription Subscriptions} to {@link Subscription#isActive() become active} but not longer
* than {@link #DEFAULT_TIMEOUT}.
*
* @param subscription
* @param subscriptions
* @throws InterruptedException
*/
static void awaitSubscriptions(Subscription... subscriptions) throws InterruptedException {
Expand Down Expand Up @@ -131,7 +131,8 @@ static void awaitMessages(CollectingMessageListener listener, int nrMessages, Du
/**
* {@link MessageListener} implementation collecting received {@link Message messages}.
*
* @param <M>
* @param <S> source message type.
* @param <T> target message type.
*/
static class CollectingMessageListener<S, T> implements MessageListener<S, T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private Assertions() {
/**
* Create assertion for {@link Document}.
*
* @param actual the actual value.
* @param document the actual value.
* @return the created assertion object.
*/
public static DocumentAssert assertThat(Document document) {
Expand Down