mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-19 09:42:11 +03:00
MacOSX: millis arg was ignored
This commit is contained in:
@ -107,7 +107,7 @@ public class ThinkDifferent {
|
|||||||
|
|
||||||
private static void sleep(int millis) {
|
private static void sleep(int millis) {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(100);
|
Thread.sleep(millis);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
//ignore
|
//ignore
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user