Merge remote-tracking branch 'mkeesey/master'

This commit is contained in:
Joel Dice 2012-12-31 08:39:32 -07:00
commit a37fbdaa29

View File

@ -151,8 +151,8 @@ public class Thread implements Runnable {
private static native boolean interrupted(long peer);
public static boolean isInterrupted() {
return currentThread().interrupted;
public boolean isInterrupted() {
return interrupted;
}
public static void sleep(long milliseconds) throws InterruptedException {