MCPcopy Create free account
hub / github.com/Jeremiahcheng1206/AML-Monitoring-Engine / IOUtil

Class IOUtil

src/main/java/util/IOUtil.java:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import java.io.*;
4
5public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected