Код: Выделить всё
@FunctionalInterface
public interface DBSupplier {
T get() throws E;
}
public static R onDupQuery(
MutableConnection conn,
DBSupplier dbQuery,
DBSupplier dbInsert) throws SQLException {
...
}
Почему это делает это, и как от него избавиться? < /p>
Подробнее здесь: https://stackoverflow.com/questions/797 ... ava-editor