More interfaces that were missed previously.

This commit is contained in:
Mike Jensen
2014-01-09 09:50:15 -07:00
parent ac27ebd995
commit 2aa9de3dfb
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package java.util.concurrent;
public interface RunnableFuture<T> extends Runnable, Future<T> {
// nothing added to interface
}