mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 01:40:26 +01:00
WTUtils: remove redundant public
on interfaces
This commit is contained in:
parent
a89e309d66
commit
a5ab229f9f
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user