| 3 | import java.io.*; |
| 4 | |
| 5 | public class IOUtil { |
| 6 | public static void close(Closeable closeable) { |
| 7 | if (closeable != null) { |
| 8 | try { |
| 9 | closeable.close(); |
| 10 | } catch (IOException e) { |
| 11 | e.printStackTrace(); |
| 12 | } |
| 13 | } |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected