WTUtils: remove redundant public on interfaces

This commit is contained in:
Sean Gilligan 2023-09-16 09:48:37 -07:00 committed by Andreas Schildbach
parent a89e309d66
commit a5ab229f9f

View File

@ -26,11 +26,11 @@ public class WTUtils {
private static final Logger log = LoggerFactory.getLogger(WTUtils.class);
public interface UncheckedRun<T> {
public T run() throws Throwable;
T run() throws Throwable;
}
public interface UncheckedRunnable {
public void run() throws Throwable;
void run() throws Throwable;
}
public static <T> T unchecked(UncheckedRun<T> run) {