[#5040] Fixed compilation error

This commit is contained in:
lukaseder 2016-02-03 17:56:37 +01:00
parent 7dad30a585
commit 67d8ec1fec

View File

@ -49,6 +49,7 @@ import org.jooq.Configuration;
import org.jooq.ConnectionProvider;
import org.jooq.ConverterProvider;
import org.jooq.ExecuteListenerProvider;
import org.jooq.ExecutorProvider;
import org.jooq.RecordListenerProvider;
import org.jooq.RecordMapperProvider;
import org.jooq.SQLDialect;
@ -101,6 +102,11 @@ public class MockConfiguration implements Configuration {
return new MockConnectionProvider(delegate.connectionProvider(), provider);
}
@Override
public ExecutorProvider executorProvider() {
return delegate.executorProvider();
}
@Override
public TransactionProvider transactionProvider() {
return delegate.transactionProvider();
@ -166,6 +172,11 @@ public class MockConfiguration implements Configuration {
return delegate.set(newDataSource);
}
@Override
public Configuration set(ExecutorProvider newExecutorProvider) {
return delegate.set(newExecutorProvider);
}
@Override
public Configuration set(TransactionProvider newTransactionProvider) {
return delegate.set(newTransactionProvider);
@ -216,6 +227,11 @@ public class MockConfiguration implements Configuration {
return delegate.derive(newConnectionProvider);
}
@Override
public Configuration derive(ExecutorProvider newExecutorProvider) {
return delegate.derive(newExecutorProvider);
}
@Override
public Configuration derive(Connection newConnection) {
return delegate.derive(newConnection);