File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/java.base/share/classes/java/text Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments