PL-8906 Support Kryo serialization by default in the next platform version

This commit is contained in:
Andrey Subbotin 2017-04-28 13:59:56 +04:00
parent 4a77a8d1f9
commit 194943370c

View File

@ -58,6 +58,14 @@ public class UserSession implements Serializable {
protected transient Map<String, Object> localAttributes;
/**
* INTERNAL
* Used only for kryo serialization
*/
public UserSession() {
localAttributes = new ConcurrentHashMap<>();
}
/**
* INTERNAL
*/