Some small classpath tweaks to be compatible with openJDK's api

This commit is contained in:
Mike Jensen
2014-12-15 16:26:41 -07:00
parent a53ffc1792
commit 32a1fb21f2
5 changed files with 40 additions and 2 deletions

View File

@ -10,6 +10,6 @@
package java.util.concurrent;
public interface Delayed {
public interface Delayed extends Comparable<Delayed> {
public long getDelay(TimeUnit unit);
}