*/
private void internalInit(final Kryo kryo)
{
kryo.register(Arrays.asList("").getClass(), new ArraysAsListSerializer());
kryo.register(Class.class, new ClassSerializer());
kryo.register(Collections.EMPTY_LIST.getClass(), new CollectionsEmptyListSerializer());
kryo.register(Collections.EMPTY_MAP.getClass(), new CollectionsEmptyMapSerializer());
kryo.register(Collections.EMPTY_SET.getClass(), new CollectionsEmptySetSerializer());
kryo.register(Collections.singletonList("").getClass(),
new CollectionsSingletonListSerializer());