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
commit ae1dad6ca58648670ddc37e33adc398b2d270557 Author: Gary Gregory <[email protected]> AuthorDate: Wed Jul 19 10:55:18 2023 -0400 Add @Override --- src/main/java/org/apache/commons/net/DatagramSocketClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/net/DatagramSocketClient.java b/src/main/java/org/apache/commons/net/DatagramSocketClient.java index cc90e145..5df2cb1c 100644 --- a/src/main/java/org/apache/commons/net/DatagramSocketClient.java +++ b/src/main/java/org/apache/commons/net/DatagramSocketClient.java @@ -83,6 +83,7 @@ public abstract class DatagramSocketClient implements AutoCloseable { * Closes the DatagramSocket used for the connection. You should call this method after you've finished using the class instance and also before you call * {@link #open open() } again. _isOpen_ is set to false and _socket_ is set to null. */ + @Override public void close() { if (_socket_ != null) { _socket_.close();
