es.moki.ratelimitj.core.RateLimitUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ratelimitj-core Show documentation
Show all versions of ratelimitj-core Show documentation
The RateLimitJ project aims to provide a modular rate limiting solution
package es.moki.ratelimitj.core;
import javax.annotation.Nullable;
public class RateLimitUtils {
private RateLimitUtils() {
// util class
}
public static T coalesce(@Nullable T first, T second) {
return first == null ? second : first;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy