mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-24 04:18:11 +00:00
8028300: Fix raw type lint warnings in java.util.concurrent
Reviewed-by: chegar, martin
This commit is contained in:
parent
7e3d90db4a
commit
8280dc2170
@ -1820,7 +1820,7 @@ public class ForkJoinPool extends AbstractExecutorService {
|
||||
}
|
||||
}
|
||||
for (;;) { // help stealer or descend to its stealer
|
||||
ForkJoinTask[] a; int b;
|
||||
ForkJoinTask<?>[] a; int b;
|
||||
if (subtask.status < 0) // surround probes with
|
||||
continue restart; // consistency checks
|
||||
if ((b = v.base) - v.top < 0 && (a = v.array) != null) {
|
||||
|
||||
@ -1253,11 +1253,11 @@ public class ScheduledThreadPoolExecutor
|
||||
* Snapshot iterator that works off copy of underlying q array.
|
||||
*/
|
||||
private class Itr implements Iterator<Runnable> {
|
||||
final RunnableScheduledFuture[] array;
|
||||
final RunnableScheduledFuture<?>[] array;
|
||||
int cursor = 0; // index of next element to return
|
||||
int lastRet = -1; // index of last element, or -1 if no such
|
||||
|
||||
Itr(RunnableScheduledFuture[] array) {
|
||||
Itr(RunnableScheduledFuture<?>[] array) {
|
||||
this.array = array;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user