![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.lidalia.slf4jtest.Suppliers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slf4j-test Show documentation
Show all versions of slf4j-test Show documentation
An in-memory SLF4J implementation focused on aiding unit testing.
The newest version!
package uk.org.lidalia.slf4jtest;
import com.google.common.base.Supplier;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
final class Suppliers {
static Supplier> makeEmptyMutableList() {
return new Supplier>() {
@Override
public List get() {
return new ArrayList<>();
}
};
}
static Supplier
© 2015 - 2025 Weber Informatics LLC | Privacy Policy