com.zusmart.base.activity.ActivityUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zusmart-base Show documentation
Show all versions of zusmart-base Show documentation
提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread
package com.zusmart.base.activity;
import com.zusmart.base.logging.Logger;
import com.zusmart.base.logging.LoggerFactory;
public abstract class ActivityUtils {
private static final Logger logger = LoggerFactory.getLogger(ActivityUtils.class);
public static void close(Activity> activity) {
if (null != activity) {
try {
activity.close();
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
}
}
}