package io.github.ibuildthecloud.gdapi.factory.impl; import io.github.ibuildthecloud.gdapi.factory.SchemaFactory; import io.github.ibuildthecloud.gdapi.model.impl.SchemaImpl; public abstract class AbstractSchemaPostProcessor implements SchemaPostProcessor { @Override public SchemaImpl postProcessRegister(SchemaImpl schema, SchemaFactory factory) { return schema; } @Override public SchemaImpl postProcess(SchemaImpl schema, SchemaFactory factory) { return schema; } }