mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8309882: LinkedHashMap adds an errant serializable field
Reviewed-by: darcy, bpb, jpai, rriggs
This commit is contained in:
parent
c0aa6bf4fe
commit
e138685648
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ public class LinkedHashMap<K,V>
|
|||
static final int PUT_NORM = 0;
|
||||
static final int PUT_FIRST = 1;
|
||||
static final int PUT_LAST = 2;
|
||||
int putMode = PUT_NORM;
|
||||
transient int putMode = PUT_NORM;
|
||||
|
||||
// Called after update, but not after insertion
|
||||
void afterNodeAccess(Node<K,V> e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue