diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TaxonomyRouteController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TaxonomyRouteController.php index e989587..922f930 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/TaxonomyRouteController.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TaxonomyRouteController.php @@ -7,9 +7,6 @@ namespace Drupal\taxonomy; -use Symfony\Component\HttpFoundation\Response; -use Symfony\Component\HttpFoundation\JsonResponse; - /** * Controller routines for taxonomy routes. */ @@ -27,12 +24,4 @@ public function autocomplete($field_name, $tags_typed = '') { $taxonomy = new Taxonomy(); return $taxonomy->autocomplete($field_name, $tags_typed); } - /** - * Test Function. - * - * @author Samuel Leathers - */ - public function disasm() { - return new Response('disasm'); - } }