8028300: Fix raw type lint warnings in java.util.concurrent

Reviewed-by: chegar, martin
This commit is contained in:
Joe Darcy 2013-11-13 11:06:57 -08:00
parent 7e3d90db4a
commit 8280dc2170
2 changed files with 3 additions and 3 deletions

View File

@ -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) {

View File

@ -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;
}