This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new 9babcc37 Javadoc 9babcc37 is described below commit 9babcc37db2911069b040112363c4cd5ef6b94f8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Feb 26 07:39:56 2025 -0500 Javadoc --- src/main/java/org/apache/commons/net/tftp/TFTPAckPacket.java | 2 +- src/main/java/org/apache/commons/net/tftp/TFTPDataPacket.java | 8 ++++---- src/main/java/org/apache/commons/net/tftp/TFTPErrorPacket.java | 4 ++-- src/main/java/org/apache/commons/net/tftp/TFTPPacket.java | 6 +++--- src/main/java/org/apache/commons/net/tftp/TFTPRequestPacket.java | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/java/org/apache/commons/net/tftp/TFTPAckPacket.java b/src/main/java/org/apache/commons/net/tftp/TFTPAckPacket.java index f2edc5f4..b3085bb6 100644 --- a/src/main/java/org/apache/commons/net/tftp/TFTPAckPacket.java +++ b/src/main/java/org/apache/commons/net/tftp/TFTPAckPacket.java @@ -71,7 +71,7 @@ public final class TFTPAckPacket extends TFTPPacket { } /** - * Returns the block number of the acknowledgement. + * Gets the block number of the acknowledgement. * * @return The block number of the acknowledgement. */ diff --git a/src/main/java/org/apache/commons/net/tftp/TFTPDataPacket.java b/src/main/java/org/apache/commons/net/tftp/TFTPDataPacket.java index 7a2725fa..3ea98612 100644 --- a/src/main/java/org/apache/commons/net/tftp/TFTPDataPacket.java +++ b/src/main/java/org/apache/commons/net/tftp/TFTPDataPacket.java @@ -113,7 +113,7 @@ public final class TFTPDataPacket extends TFTPPacket { } /** - * Returns the block number of the data packet. + * Gets the block number of the data packet. * * @return The block number of the data packet. */ @@ -122,7 +122,7 @@ public final class TFTPDataPacket extends TFTPPacket { } /** - * Returns the byte array containing the packet data. + * Gets the byte array containing the packet data. * * @return The byte array containing the packet data. */ @@ -131,7 +131,7 @@ public final class TFTPDataPacket extends TFTPPacket { } /** - * Returns the length of the data part of the data packet. + * Gets the length of the data part of the data packet. * * @return The length of the data part of the data packet. */ @@ -140,7 +140,7 @@ public final class TFTPDataPacket extends TFTPPacket { } /** - * Returns the offset into the byte array where the packet data actually starts. + * Gets the offset into the byte array where the packet data actually starts. * * @return The offset into the byte array where the packet data actually starts. */ diff --git a/src/main/java/org/apache/commons/net/tftp/TFTPErrorPacket.java b/src/main/java/org/apache/commons/net/tftp/TFTPErrorPacket.java index fc24fbb1..b2e275e1 100644 --- a/src/main/java/org/apache/commons/net/tftp/TFTPErrorPacket.java +++ b/src/main/java/org/apache/commons/net/tftp/TFTPErrorPacket.java @@ -121,7 +121,7 @@ public final class TFTPErrorPacket extends TFTPPacket { } /** - * Returns the error code of the packet. + * Gets the error code of the packet. * * @return The error code of the packet. */ @@ -130,7 +130,7 @@ public final class TFTPErrorPacket extends TFTPPacket { } /** - * Returns the error message of the packet. + * Gets the error message of the packet. * * @return The error message of the packet. */ diff --git a/src/main/java/org/apache/commons/net/tftp/TFTPPacket.java b/src/main/java/org/apache/commons/net/tftp/TFTPPacket.java index a1f4150e..cce17c75 100644 --- a/src/main/java/org/apache/commons/net/tftp/TFTPPacket.java +++ b/src/main/java/org/apache/commons/net/tftp/TFTPPacket.java @@ -136,7 +136,7 @@ public abstract class TFTPPacket { } /** - * Returns the address of the host where the packet is going to be sent or where it came from. + * Gets the address of the host where the packet is going to be sent or where it came from. * * @return The type of the packet. */ @@ -145,7 +145,7 @@ public abstract class TFTPPacket { } /** - * Returns the port where the packet is going to be sent or where it came from. + * Gets the port where the packet is going to be sent or where it came from. * * @return The port where the packet came from or where it is going. */ @@ -154,7 +154,7 @@ public abstract class TFTPPacket { } /** - * Returns the type of the packet. + * Gets the type of the packet. * * @return The type of the packet. */ diff --git a/src/main/java/org/apache/commons/net/tftp/TFTPRequestPacket.java b/src/main/java/org/apache/commons/net/tftp/TFTPRequestPacket.java index 64ec423c..2bc2cd5c 100644 --- a/src/main/java/org/apache/commons/net/tftp/TFTPRequestPacket.java +++ b/src/main/java/org/apache/commons/net/tftp/TFTPRequestPacket.java @@ -134,7 +134,7 @@ public abstract class TFTPRequestPacket extends TFTPPacket { } /** - * Returns the requested file name. + * Gets the requested file name. * * @return The requested file name. */ @@ -143,7 +143,7 @@ public abstract class TFTPRequestPacket extends TFTPPacket { } /** - * Returns the transfer mode of the request. + * Gets the transfer mode of the request. * * @return The transfer mode of the request. */