16 lines
474 B
Java
16 lines
474 B
Java
package com.hypixel.hytale.codec.validation;
|
|
|
|
import com.hypixel.hytale.codec.schema.SchemaContext;
|
|
import com.hypixel.hytale.codec.schema.config.Schema;
|
|
|
|
@Deprecated(forRemoval = true)
|
|
public interface LegacyValidator<T> extends Validator<T> {
|
|
@Override
|
|
void accept(T var1, ValidationResults var2);
|
|
|
|
@Override
|
|
default void updateSchema(SchemaContext context, Schema target) {
|
|
System.err.println("updateSchema: " + this.getClass().getSimpleName());
|
|
}
|
|
}
|