Skip to content

Commit

Permalink
Minor smell fix related to static final
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Oct 26, 2023
1 parent 7b01ab8 commit 7ebeedd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

public class DockerHost {

final static Logger log = getLogger(lookup().lookupClass());
static final Logger log = getLogger(lookup().lookupClass());

public static final String DEFAULT_ADDRESS = "localhost";
private static final int DEFAULT_PORT = 2375;
Expand Down

0 comments on commit 7ebeedd

Please sign in to comment.