Skip to content

Commit

Permalink
#374 - removed old ddl generation mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
rbygrave committed Aug 6, 2015
1 parent 7f06863 commit c0ef6d8
Show file tree
Hide file tree
Showing 19 changed files with 18 additions and 1,831 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ protected void loadAndInitializePlugins(ServerConfig config) {

for (SpiEbeanPlugin plugin : ServiceLoader.load(SpiEbeanPlugin.class)) {
spiPlugins.add(plugin);
plugin.setup(this, this.getDatabasePlatform(), config);
plugin.setup(this, config);

if (plugin instanceof DdlGenerator) {
// backwards compatible
Expand All @@ -261,7 +261,7 @@ protected void loadAndInitializePlugins(ServerConfig config) {
// ServiceLoader not finding ddlGenerator (typically OSGi)
ddlGenerator = new DdlGenerator();
spiPlugins.add(ddlGenerator);
ddlGenerator.setup(this, this.getDatabasePlatform(), config);
ddlGenerator.setup(this, config);
}

ebeanPlugins = Collections.unmodifiableList(spiPlugins);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

42 changes: 0 additions & 42 deletions src/main/java/com/avaje/ebeaninternal/server/ddl/BeanVisitor.java

This file was deleted.

Loading

0 comments on commit c0ef6d8

Please sign in to comment.