From 5098b449ae90e3bb79a1e388df3299ce8a99ddfc Mon Sep 17 00:00:00 2001 From: Larry Garfield Date: Mon, 2 Jan 2012 21:12:43 -0600 Subject: [PATCH] Fix some use statements. --- .../Drupal/Database/Query/InvalidMergeQueryException.php | 2 +- core/modules/search/search.extender.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/includes/Drupal/Database/Query/InvalidMergeQueryException.php b/core/includes/Drupal/Database/Query/InvalidMergeQueryException.php index 3bc24bb96f0a..9a840d16c59d 100644 --- a/core/includes/Drupal/Database/Query/InvalidMergeQueryException.php +++ b/core/includes/Drupal/Database/Query/InvalidMergeQueryException.php @@ -2,7 +2,7 @@ namespace Drupal\Database\Query; -use Exception; +use RuntimeException; /** * Exception thrown for merge queries that do not make semantic sense. diff --git a/core/modules/search/search.extender.inc b/core/modules/search/search.extender.inc index 3ccf9d476b1e..588fdca7c358 100644 --- a/core/modules/search/search.extender.inc +++ b/core/modules/search/search.extender.inc @@ -1,7 +1,7 @@