Skip to content

Commit e05f61a

Browse files
Fixed RequestProcessor FixedRateTask initialDelay
FixedRateTask using the time unit converted initial delay
1 parent d0afe36 commit e05f61a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/openide.util/src/org/openide/util/RequestProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ private ScheduledFuture<?> scheduleFixed (Runnable command, long initialDelay, l
10291029

10301030
TaskFutureWrapper wrap = fixedDelay ?
10311031
new FixedDelayTask(command, initialDelayMillis, periodMillis) :
1032-
new FixedRateTask(command, initialDelay, periodMillis);
1032+
new FixedRateTask(command, initialDelayMillis, periodMillis);
10331033
Task t = create(wrap);
10341034
wrap.t = t;
10351035
t.cancelled = wrap.cancelled;

0 commit comments

Comments
 (0)