[#6447] Fix compilation error
This commit is contained in:
parent
338a308bdb
commit
36eba8110e
@ -35,6 +35,7 @@
|
||||
package org.jooq.tools.jdbc;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.time.Clock;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
@ -106,6 +107,13 @@ public class MockConfiguration implements Configuration {
|
||||
return delegate.data(key, value);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Clock clock() {
|
||||
return delegate.clock();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public ConnectionProvider connectionProvider() {
|
||||
return new MockConnectionProvider(delegate.connectionProvider(), provider);
|
||||
@ -176,6 +184,13 @@ public class MockConfiguration implements Configuration {
|
||||
return delegate.settings();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Configuration set(Clock newClock) {
|
||||
return delegate.set(newClock);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Configuration set(ConnectionProvider newConnectionProvider) {
|
||||
return delegate.set(newConnectionProvider);
|
||||
@ -286,6 +301,13 @@ public class MockConfiguration implements Configuration {
|
||||
return delegate.derive();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Configuration derive(Clock newClock) {
|
||||
return delegate.derive(newClock);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Configuration derive(Connection newConnection) {
|
||||
return delegate.derive(newConnection);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user