Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dev checkin. load all data loader factory extension points
  • Loading branch information
chenson42 committed Feb 27, 2012
1 parent e5b6c2b commit f4c4555
Showing 1 changed file with 3 additions and 6 deletions.
Expand Up @@ -154,12 +154,9 @@ protected boolean registerExtension(String beanName, IExtensionPoint ext) {

if (ext instanceof IDataLoaderFactory) {
installed = true;
IDataLoaderFactory factory = (IDataLoaderFactory) ext;
if (factory.isPlatformSupported(engine.getSymmetricDialect().getPlatform())) {
extensionPoints.add(new ExtensionPointMetaData(ext, beanName,
IDataLoaderFactory.class, true));
engine.getDataLoaderService().addDataLoaderFactory((IDataLoaderFactory) ext);
}
extensionPoints.add(new ExtensionPointMetaData(ext, beanName, IDataLoaderFactory.class,
true));
engine.getDataLoaderService().addDataLoaderFactory((IDataLoaderFactory) ext);
}

if (ext instanceof IAcknowledgeEventListener) {
Expand Down

0 comments on commit f4c4555

Please sign in to comment.