From ec114c21fe08219dafa074b86c9dacf51437de13 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 17 Aug 2021 17:43:25 +1200 Subject: [PATCH] [Ref] remove unused variable --- CRM/Core/DAO/AllCoreTables.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CRM/Core/DAO/AllCoreTables.php b/CRM/Core/DAO/AllCoreTables.php index 2db1a16acfa7..6a274847fc90 100644 --- a/CRM/Core/DAO/AllCoreTables.php +++ b/CRM/Core/DAO/AllCoreTables.php @@ -366,11 +366,9 @@ public static function getEntityNameForTable(string $tableName) { /** * Reinitialise cache. - * - * @param bool $fresh */ - public static function reinitializeCache($fresh = FALSE) { - self::init($fresh); + public static function reinitializeCache() { + self::init(TRUE); } /**