1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

MacOSX: millis arg was ignored

This commit is contained in:
Federico Fissore 2015-05-27 17:43:15 +02:00
parent 606aaee668
commit 4bc93e5d53

View File

@ -107,7 +107,7 @@ public class ThinkDifferent {
private static void sleep(int millis) {
try {
Thread.sleep(100);
Thread.sleep(millis);
} catch (InterruptedException e) {
//ignore
}