I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 90919ebf authored by str4d's avatar str4d
Browse files

Make ObjectCounter Serializable

parent 1b95a03d
No related branches found
No related tags found
No related merge requests found
package net.i2p.util;
import java.io.Serializable;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;
......@@ -9,7 +10,12 @@ import java.util.concurrent.atomic.AtomicInteger;
*
* @author zzz, welterde
*/
public class ObjectCounter<K> {
public class ObjectCounter<K> implements Serializable {
/**
* Serializable so it can be passed in an Android Bundle
*/
private static final long serialVersionUID = 3160378641721937421L;
private final ConcurrentHashMap<K, AtomicInteger> map;
public ObjectCounter() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment