Skip to content

Commit

Permalink
Use final
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 24, 2024
1 parent 7e6f523 commit 562df31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public MockDaytimeTCPServer() throws IOException {
* @param port the port number the server will bind to, or 0 to use a port number that is automatically allocated
* @throws IOException if an I/O error occurs when opening the socket.
*/
public MockDaytimeTCPServer(int port) throws IOException {
public MockDaytimeTCPServer(final int port) throws IOException {
super(port);
}

Expand All @@ -80,7 +80,7 @@ public MockDaytimeTCPServer(int port) throws IOException {
* @param serverAddress the InetAddress the server will bind to
* @throws IOException if an I/O error occurs when opening the socket.
*/
public MockDaytimeTCPServer(int port, InetAddress serverAddress) throws IOException {
public MockDaytimeTCPServer(final int port, final InetAddress serverAddress) throws IOException {
super(port, serverAddress);
}

Expand Down

0 comments on commit 562df31

Please sign in to comment.