Bug, sharing serializers gives an error
okrische opened this issue · 0 comments
okrische commented
This test will fail with a RuntimeException:
@Test
public void testShareSerializers() {
final LongSerializer serializer = new LongSerializer();
final SerializerFactory factory = () -> new NFTypeSerializer[] { serializer };
final FastBlobStateEngine engine = new FastBlobStateEngine(factory);
final FastBlobStateEngine other = new FastBlobStateEngine(factory);
}