Issue #2209029 by pwolanin: Follow-up: clean up use statements in book module code.

8.0.x
webchick 2014-03-04 13:00:49 -08:00
parent 1ed138b481
commit 09c0a74e70
7 changed files with 0 additions and 11 deletions

View File

@ -5,10 +5,6 @@
* Administration page callbacks for the Book module.
*/
use Drupal\Component\Utility\Crypt;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Language\Language;
/**
* Returns HTML for a book administration form.
*

View File

@ -7,7 +7,6 @@
namespace Drupal\book\Access;
use Drupal\book\BookManager;
use Drupal\book\BookManagerInterface;
use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Session\AccountInterface;

View File

@ -9,7 +9,6 @@ namespace Drupal\book;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\node\NodeInterface;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* Provides methods for exporting book to different formats.

View File

@ -10,9 +10,7 @@ namespace Drupal\book;
use Drupal\Component\Utility\Unicode;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Database\Connection;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Language\Language;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\Config\ConfigFactoryInterface;

View File

@ -7,7 +7,6 @@
namespace Drupal\book\Controller;
use Drupal\book\BookManager;
use Drupal\book\BookExport;
use Drupal\book\BookManagerInterface;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;

View File

@ -12,7 +12,6 @@ use Drupal\Component\Utility\Crypt;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Entity\EntityStorageControllerInterface;
use Drupal\Core\Form\FormBase;
use Drupal\menu_link\MenuLinkStorageControllerInterface;
use Drupal\node\NodeInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

View File

@ -7,7 +7,6 @@
namespace Drupal\book\Tests;
use Drupal\Core\Language\Language;
use Drupal\Core\Entity\EntityInterface;
use Drupal\simpletest\WebTestBase;