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

reactivefeign.utils.CollectionUtils Maven / Gradle / Ivy

package reactivefeign.utils;

import java.util.Collection;

public class CollectionUtils {

    public static  boolean isEmpty(Collection c){
        return c == null || c.isEmpty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy