Fixed deprecation warning

This commit is contained in:
Lukas Eder 2014-11-12 16:41:05 +01:00
parent 06dccf2710
commit 7aaa4774d0

View File

@ -695,13 +695,8 @@ implements
// ------------------------------------------------------------------------
@Override
public final void bind(BindContext context) {
delegate(context.configuration()).bind(context);
}
@Override
public final void toSQL(RenderContext context) {
delegate(context.configuration()).toSQL(context);
public final void accept(Context<?> ctx) {
delegate(ctx.configuration()).accept(ctx);
}
@Override