From f370d5039053640c6d7bfc0a7fecfd6126f83cb3 Mon Sep 17 00:00:00 2001 From: Roland Waldner Date: Sat, 13 Dec 2014 17:10:41 +0100 Subject: [PATCH] [CLEANUP] Add missing empty lines after copyright comments II At the moment in some classes you can find an empty line between the copyright comment and the first use statement. In some (far less) other classes there is no such empty line. This commit adds an empty line between those comments if there is no empty line. This is not part of the TYPO3 CMS CGL but increases consistency in this area. This regular expression was used to add the empty lines: Search: ( \* The TYPO3 project - inspiring people to share!\n \*/\n)(use ) Replace: $1\n$2 Resolves: #63829 Releases: master Change-Id: I4b28a1cfcfc727016ac5d89b3988d236270f37e2 Reviewed-on: http://review.typo3.org/35391 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn --- Classes/FrontendEditPanel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/FrontendEditPanel.php b/Classes/FrontendEditPanel.php index 8278b86..666ca7e 100644 --- a/Classes/FrontendEditPanel.php +++ b/Classes/FrontendEditPanel.php @@ -13,6 +13,7 @@ namespace TYPO3\CMS\Feedit; * * The TYPO3 project - inspiring people to share! */ + use TYPO3\CMS\Backend\Utility\IconUtility; use TYPO3\CMS\Core\Utility\GeneralUtility;