Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dead code for service that does not exits anymore #1862

Merged
merged 2 commits into from
Dec 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

2 changes: 0 additions & 2 deletions eZ/Bundle/EzPublishCoreBundle/EzPublishCoreBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\RegisterSearchEngineIndexerPass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\RegisterSearchEnginePass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\RegisterStorageEnginePass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\LegacyStorageEnginePass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\ChainRoutingPass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\ChainConfigResolverPass;
use eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler\LocalePass;
Expand Down Expand Up @@ -64,7 +63,6 @@ public function build(ContainerBuilder $container)
$container->addCompilerPass(new RegisterStorageEnginePass());
$container->addCompilerPass(new RegisterSearchEnginePass());
$container->addCompilerPass(new RegisterSearchEngineIndexerPass());
$container->addCompilerPass(new LegacyStorageEnginePass());
$container->addCompilerPass(new LocalePass());
$container->addCompilerPass(new ContentViewPass());
$container->addCompilerPass(new LocationViewPass());
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function process(ContainerBuilder $container)
foreach ($attributes as $attribute) {
if (!isset($attribute['alias'])) {
throw new LogicException(
'ezpublish.storageEngine.legacy.converter service tag needs an "alias" attribute to identify the field type. None given.'
'ezpublish.search.legacy.gateway.criterion_field_value_handler service tag needs an "alias" attribute to identify the field type. None given.'
);
}

Expand Down