diff --git a/typo3/sysext/core/Documentation/Changelog/8.0/Deprecation-72716-DeprecateFformathtmlForUsageInBackend.rst b/typo3/sysext/core/Documentation/Changelog/8.0/Deprecation-72716-DeprecateFformathtmlForUsageInBackend.rst
deleted file mode 100644
index 222c9e270c82f902c0b7d501336710feac3cf4b8..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/8.0/Deprecation-72716-DeprecateFformathtmlForUsageInBackend.rst
+++ /dev/null
@@ -1,35 +0,0 @@
-
-.. include:: ../../Includes.txt
-
-==================================================================
-Deprecation: #72716 - Deprecate f:format.html for usage in backend
-==================================================================
-
-See :issue:`72716`
-
-Description
-===========
-
-The usage of the viewhelper `f:format.html` in the backend context is discouraged
-because of possible side effects - e.g. no `lib.parseFunc` is configured.
-
-
-Impact
-======
-
-Using the viewhelper `f:format.html` in the backend context will trigger a
-deprecation log entry.
-
-
-Affected Installations
-======================
-
-Any TYPO3 instance using the viewhelper in the backend context.
-
-
-Migration
-=========
-
-Use the viewhelper `f:format.raw`.
-
-.. index:: Fluid, Backend
diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php
index dc61a24539f4e3ebcda8277746f89d8a5ca53926..c82a6246dc2808f0b9c3c616e867ead796205361 100644
--- a/typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php
+++ b/typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php
@@ -98,8 +98,6 @@ class HtmlViewHelper extends AbstractViewHelper
     {
         $parseFuncTSPath = $arguments['parseFuncTSPath'];
         if (TYPO3_MODE === 'BE') {
-            GeneralUtility::deprecationLog('The usage of the viewhelper "f:format.html" in the backend context is discouraged, and will stop working with CMS 9. '
-                    . 'Use the viewhelper "f:format.raw" instead.');
             self::simulateFrontendEnvironment();
         }
         $value = $renderChildrenClosure();