Skip to content

Commit 0761a4b

Browse files
committedOct 21, 2021
8275688: Suppress warnings on non-serializable non-transient instance fields in DualPivotQuicksort
Reviewed-by: rriggs
1 parent 3cb241a commit 0761a4b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/java.base/share/classes/java/util/DualPivotQuicksort.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* 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,
39973997
*/
39983998
private static final class Sorter extends CountedCompleter<Void> {
39993999
private static final long serialVersionUID = 20180818L;
4000+
@SuppressWarnings("serial")
40004001
private final Object a, b;
40014002
private final int low, size, offset, depth;
40024003

@@ -4066,6 +4067,7 @@ private void forkSorter(int depth, int low, int high) {
40664067
*/
40674068
private static final class Merger extends CountedCompleter<Void> {
40684069
private static final long serialVersionUID = 20180818L;
4070+
@SuppressWarnings("serial")
40694071
private final Object dst, a1, a2;
40704072
private final int k, lo1, hi1, lo2, hi2;
40714073

@@ -4115,6 +4117,7 @@ private void forkMerger(Object dst, int k,
41154117
*/
41164118
private static final class RunMerger extends RecursiveTask<Object> {
41174119
private static final long serialVersionUID = 20180818L;
4120+
@SuppressWarnings("serial")
41184121
private final Object a, b;
41194122
private final int[] run;
41204123
private final int offset, aim, lo, hi;

0 commit comments

Comments
 (0)
Please sign in to comment.