|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2009, 2021, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -3997,6 +3997,7 @@ private static void mergeParts(Merger merger, double[] dst, int k,
|
3997 | 3997 | */
|
3998 | 3998 | private static final class Sorter extends CountedCompleter<Void> {
|
3999 | 3999 | private static final long serialVersionUID = 20180818L;
|
| 4000 | + @SuppressWarnings("serial") |
4000 | 4001 | private final Object a, b;
|
4001 | 4002 | private final int low, size, offset, depth;
|
4002 | 4003 |
|
@@ -4066,6 +4067,7 @@ private void forkSorter(int depth, int low, int high) {
|
4066 | 4067 | */
|
4067 | 4068 | private static final class Merger extends CountedCompleter<Void> {
|
4068 | 4069 | private static final long serialVersionUID = 20180818L;
|
| 4070 | + @SuppressWarnings("serial") |
4069 | 4071 | private final Object dst, a1, a2;
|
4070 | 4072 | private final int k, lo1, hi1, lo2, hi2;
|
4071 | 4073 |
|
@@ -4115,6 +4117,7 @@ private void forkMerger(Object dst, int k,
|
4115 | 4117 | */
|
4116 | 4118 | private static final class RunMerger extends RecursiveTask<Object> {
|
4117 | 4119 | private static final long serialVersionUID = 20180818L;
|
| 4120 | + @SuppressWarnings("serial") |
4118 | 4121 | private final Object a, b;
|
4119 | 4122 | private final int[] run;
|
4120 | 4123 | private final int offset, aim, lo, hi;
|
|
0 commit comments