Remove not used SerialVersionUID fields

This commit is contained in:
Norman Maurer 2011-11-03 20:30:44 +01:00
parent a91c56c84d
commit e4bd678846
2 changed files with 0 additions and 3 deletions

View File

@ -1218,8 +1218,6 @@ public final class ConcurrentIdentityHashMap<K, V> extends AbstractMap<K, V>
*/
static class SimpleEntry<K, V> implements Entry<K, V> {
private static final long serialVersionUID = -8144765946475398746L;
private final K key;
private V value;

View File

@ -544,7 +544,6 @@ public class LinkedTransferQueue<E> extends AbstractQueue<E>
private static final AtomicReferenceFieldUpdater<Node, Object> itemUpdater =
AtomicFieldUpdaterUtil.newRefUpdater(Node.class, Object.class, "item");
private static final long serialVersionUID = -3375979862319811754L;
}
/** head of the queue; null until first enqueue */