diff --git a/core/lib/Drupal/Core/Theme/ThemeManager.php b/core/lib/Drupal/Core/Theme/ThemeManager.php
index b7eff0b..31c10a7 100644
--- a/core/lib/Drupal/Core/Theme/ThemeManager.php
+++ b/core/lib/Drupal/Core/Theme/ThemeManager.php
@@ -96,13 +96,6 @@ public function setThemeRegistry(Registry $theme_registry) {
   /**
    * {@inheritdoc}
    */
-  public function render($hook, array $variables) {
-    return $this->theme($hook, $variables);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function getActiveTheme(RouteMatchInterface $route_match = NULL) {
     if (!isset($this->activeTheme)) {
       $this->initTheme($route_match);
@@ -137,11 +130,9 @@ public function setActiveTheme(ActiveTheme $active_theme) {
   }
 
   /**
-   * Generates themed output (internal use only).
-   *
-   * @see \Drupal\Core\Render\RendererInterface::render();
+   * {@inheritdoc}
    */
-  protected function theme($hook, $variables = array()) {
+  public function render($hook, array $variables) {
     static $default_attributes;
 
     $active_theme = $this->getActiveTheme();
