diff --git a/Classes/Bootstrap/BootCompletedEventListener.php b/Classes/Bootstrap/BootCompletedEventListener.php index 3c78c0c..951a960 100644 --- a/Classes/Bootstrap/BootCompletedEventListener.php +++ b/Classes/Bootstrap/BootCompletedEventListener.php @@ -134,28 +134,4 @@ public function __invoke(BootCompletedEvent $event): void ); } } - - /** - * Returns the cache specified by $identifier - * - * @return FrontendInterface - * @throws \TYPO3\CMS\Core\Cache\Exception\NoSuchCacheException - */ - protected function getCache(): FrontendInterface - { - return GeneralUtility::makeInstance(CacheManager::class) - ->getCache(ExtensionConfigurationUtility::CACHE_IDENTIFIER); - } - - /** - * Checks if the specified cache has been registered. - * - * @return FrontendInterface - * @throws \TYPO3\CMS\Core\Cache\Exception\NoSuchCacheException - */ - protected function hasCache() - { - return GeneralUtility::makeInstance(CacheManager::class) - ->hasCache(ExtensionConfigurationUtility::CACHE_IDENTIFIER); - } }