diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php b/core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php index 293d6f6..8acef0b 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php @@ -10,7 +10,6 @@ use Drupal\Core\Entity\EntityManager; use Drupal\views\Plugin\views\display\DisplayPluginBase; use Drupal\views\ViewExecutable; -use Drupal\views\Annotation\ViewsRow; use Symfony\Component\DependencyInjection\ContainerInterface; /** diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php b/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php index d379cde..e315c1c 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php @@ -7,9 +7,6 @@ namespace Drupal\views\Plugin\views\style; -use Drupal\views\Annotation\ViewsStyle; -use Drupal\Core\Annotation\Translation; - /** * Unformatted style plugin to render rows one after another with no * decorations. diff --git a/core/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php b/core/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php index 3f79f5c..ad4a264 100644 --- a/core/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +++ b/core/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php @@ -94,14 +94,14 @@ static public function addGlobalIgnoredName($name) * * @var \Doctrine\Common\Annotations\DocParser */ - protected $preParser; + private $preParser; /** * PHP Parser used to collect imports. * * @var \Doctrine\Common\Annotations\PhpParser */ - protected $phpParser; + private $phpParser; /** * In-memory cache mechanism to store imported annotations per class. @@ -315,27 +315,4 @@ private function collectParsingMetadata(ReflectionClass $class) ); $this->ignoredAnnotationNames[$name] = $ignoredAnnotationNames; } - - /** - * @return \Doctrine\Common\Annotations\DocParser - */ - public function getParser() { - return $this->parser; - } - - /** - * @return \Doctrine\Common\Annotations\PhpParser - */ - public function getPhpParser() { - return $this->phpParser; - } - - /** - * @return \Doctrine\Common\Annotations\DocParser - */ - public function getPreParser() { - return $this->preParser; - } - - }