Reports any Socket resource which is not safely closed in a finally block. Such resources may
be inadvertently leaked if an exception is thrown before the resource is closed. Socket resources reported
by this inspection include java.net.Socket,
java.net.DatagramSocket,
and java.net.ServerSocket.
Use the checkbox below to specify if a Socket is allowed to be opened inside a try
block. This style is less desirable because it is more verbose than opening a Socket
in front of a try block.