in chill-java/src/main/java/com/twitter/chill/config/ConfiguredInstantiator.java [167:172]
private static synchronized KryoInstantiator fastDeserialize(Kryo k, String base64Value) throws ConfigurationException {
if(cachedKryoInstantiator == null || !cachedKryoInstantiator.base64Value.equals(base64Value)) {
cachedKryoInstantiator = new CachedKryoInstantiator(deserialize(k, base64Value), base64Value);
}
return cachedKryoInstantiator.kryoInstantiator;
}