[#6721] Deprecate AbstractStore.create()

This commit is contained in:
lukaseder 2017-10-19 10:34:09 +02:00
parent f6db231221
commit 4b46260eb2

View File

@ -101,7 +101,11 @@ abstract class AbstractStore implements Attachable {
/**
* This method is used in generated code!
*
* @deprecated - 3.11.0 - [#6720] [#6721] - Use {@link Attachable#configuration()} and
* {@link Configuration#dsl()} instead.
*/
@Deprecated
protected final DSLContext create() {
return DSL.using(configuration());
}