mirror of
https://github.com/corda/corda.git
synced 2025-01-10 06:52:44 +00:00
6 lines
130 B
Java
6 lines
130 B
Java
|
package java.util.concurrent;
|
||
|
|
||
|
public interface RunnableFuture<T> extends Runnable, Future<T> {
|
||
|
// nothing added to interface
|
||
|
}
|