All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.treeyh.raindrop.utils.Utils Maven / Gradle / Ivy

The newest version!
package com.treeyh.raindrop.utils;

import lombok.extern.slf4j.Slf4j;

/**
 * @author: Treeyh
 * @version: 1.0
 * @description:
 * @create: 2023-04-06 17:58
 * @email: [email protected]
 **/
@Slf4j
public class Utils {

    public static void sleep(long time) {
        try {
            Thread.sleep(time);
        } catch (InterruptedException e) {
            log.error(e.getMessage(), e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy