File tree 1 file changed +4
-4
lines changed
src/java.base/share/classes/java/text
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
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
@@ -220,9 +220,9 @@ public PatternEntry getItemAt(int index) {
220
220
// Using BitSet would make this easier, but it's significantly slower.
221
221
//
222
222
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 ;
226
226
227
227
/*
228
228
If the strength is RESET, then just change the lastEntry to
You can’t perform that action at this time.
0 commit comments