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

net.neoremind.fountain.TrueClosurePredicate Maven / Gradle / Ivy

package net.neoremind.fountain;

/**
 * 永远为真的条件验证
 *
 * @author zhangxu
 */
class TrueClosurePredicate implements ClosurePredicate {

    @Override
    public boolean apply() {
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy