Skip to content

Commit

Permalink
[chores] javadoc tags have to appear in the correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Nov 7, 2023
1 parent 88f5b82 commit b35956d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2018-2023 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -570,8 +570,8 @@ public final SPEC pendingAcquireTimeout(Duration pendingAcquireTimeout) {
*
* @param maxConnections the maximum number of connections (per connection pool) before start pending
* @return {@literal this}
* @see #allocationStrategy(AllocationStrategy)
* @throws IllegalArgumentException if maxConnections is negative
* @see #allocationStrategy(AllocationStrategy)
*/
public final SPEC maxConnections(int maxConnections) {
if (maxConnections <= 0) {
Expand Down Expand Up @@ -783,8 +783,8 @@ public final SPEC pendingAcquireTimer(BiFunction<Runnable, Duration, Disposable>
*
* @param allocationStrategy the {@link AllocationStrategy} to use
* @return {@literal this}
* @see #maxConnections()
* @since 1.0.20
* @see #maxConnections()
*/
public final SPEC allocationStrategy(AllocationStrategy<?> allocationStrategy) {
this.allocationStrategy = Objects.requireNonNull(allocationStrategy, "allocationStrategy");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ public boolean isSecure() {
* The configured maximum number of HTTP/1.1 requests which can be served until the connection is closed by the server.
*
* @return the configured maximum number of HTTP/1.1 requests which can be served until the connection is closed by the server.
* @see HttpServer#maxKeepAliveRequests(int)
* @since 1.0.13
* @see HttpServer#maxKeepAliveRequests(int)
*/
public int maxKeepAliveRequests() {
return maxKeepAliveRequests;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020-2022 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2020-2023 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -67,8 +67,8 @@ public interface AccessLogArgProvider {
* <p> Note that the {@link ConnectionInformation#remoteAddress()} will return the forwarded
* remote client address if the server is configured in forwarded mode.
*
* @since 1.0.26
* @return the connection info
* @since 1.0.26
* @see reactor.netty.http.server.HttpServer#forwarded(BiFunction)
*/
@Nullable
Expand Down

0 comments on commit b35956d

Please sign in to comment.