Remove not used SerialVersionUID fields
This commit is contained in:
parent
57a6d39014
commit
2449f03540
@ -1226,8 +1226,6 @@ public final class ConcurrentIdentityHashMap<K, V> extends AbstractMap<K, V>
|
|||||||
*/
|
*/
|
||||||
static class SimpleEntry<K, V> implements Entry<K, V> {
|
static class SimpleEntry<K, V> implements Entry<K, V> {
|
||||||
|
|
||||||
private static final long serialVersionUID = -8144765946475398746L;
|
|
||||||
|
|
||||||
private final K key;
|
private final K key;
|
||||||
|
|
||||||
private V value;
|
private V value;
|
||||||
|
@ -544,7 +544,6 @@ public class LinkedTransferQueue<E> extends AbstractQueue<E>
|
|||||||
private static final AtomicReferenceFieldUpdater<Node, Object> itemUpdater =
|
private static final AtomicReferenceFieldUpdater<Node, Object> itemUpdater =
|
||||||
AtomicFieldUpdaterUtil.newRefUpdater(Node.class, Object.class, "item");
|
AtomicFieldUpdaterUtil.newRefUpdater(Node.class, Object.class, "item");
|
||||||
|
|
||||||
private static final long serialVersionUID = -3375979862319811754L;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** head of the queue; null until first enqueue */
|
/** head of the queue; null until first enqueue */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user