admin
2020-07-10 5c4f2093beba360b53aba711108d8d407a93c585
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.huawei.android.hms.agent.common;
 
import java.io.Closeable;
import java.io.IOException;
 
/**
 * 工具类
 */
public final class IOUtils {
    public static void close(Closeable object) {
        if (object != null) {
            try {
                object.close();
            } catch (IOException e) {
                HMSAgentLog.d("close fail");
            }
        }
    }
}