This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-testing.git
The following commit(s) were added to refs/heads/master by this push:
new 593a40e Javadoc
593a40e is described below
commit 593a40e9fb22e8c9ab1df3b8ea2b211057389dee
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 09:00:28 2026 -0400
Javadoc
---
.../org/apache/commons/testing/net/AvailableServerPortFinder.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/commons-testing-generic/src/main/java/org/apache/commons/testing/net/AvailableServerPortFinder.java
b/commons-testing-generic/src/main/java/org/apache/commons/testing/net/AvailableServerPortFinder.java
index 4aff121..3de525a 100644
---
a/commons-testing-generic/src/main/java/org/apache/commons/testing/net/AvailableServerPortFinder.java
+++
b/commons-testing-generic/src/main/java/org/apache/commons/testing/net/AvailableServerPortFinder.java
@@ -118,7 +118,7 @@ public final class AvailableServerPortFinder {
* is thrown if the port number is out of range
* @throws NoSuchElementException
* if there are no ports available
- * @return the available port
+ * @return The available port
*/
public static synchronized int getNextAvailable() {
final int next = getNextAvailable(currentMinPort.get());
@@ -135,7 +135,7 @@ public final class AvailableServerPortFinder {
* is thrown if the port number is out of range
* @throws NoSuchElementException
* if there are no ports available
- * @return the available port
+ * @return The available port
*/
public static synchronized int getNextAvailable(final int fromPort) {
if (fromPort < currentMinPort.get() || fromPort > MAX_PORT_NUMBER) {