Skip to content

Commit 60c9b5c

Browse files
author
Andrey Turbanov
committedAug 16, 2024
8337839: Make a few fields in MergeCollation static
Reviewed-by: jpai, naoto
1 parent bd4160c commit 60c9b5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/java.base/share/classes/java/text/MergeCollation.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2024, 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
@@ -220,9 +220,9 @@ public PatternEntry getItemAt(int index) {
220220
// Using BitSet would make this easier, but it's significantly slower.
221221
//
222222
private transient byte[] statusArray = new byte[8192];
223-
private final byte BITARRAYMASK = (byte)0x1;
224-
private final int BYTEPOWER = 3;
225-
private final int BYTEMASK = (1 << BYTEPOWER) - 1;
223+
private static final byte BITARRAYMASK = (byte)0x1;
224+
private static final int BYTEPOWER = 3;
225+
private static final int BYTEMASK = (1 << BYTEPOWER) - 1;
226226

227227
/*
228228
If the strength is RESET, then just change the lastEntry to

0 commit comments

Comments
 (0)
Please sign in to comment.