6 lines
166 B
Java
6 lines
166 B
Java
package ru.bclib.api.datafixer;
|
|
|
|
@FunctionalInterface
|
|
public interface PatchFunction<T, R> {
|
|
R apply(T t, MigrationProfile profile) throws PatchDidiFailException;
|
|
}
|