Problem/Motivation
EntityManager is deprecated so let's remove its usages.
Drupal\Core\Entity\Controller\EntityViewController has two subclasses: Drupal\node\Controller\NodePreviewController and Drupal\node\Controller\NodeViewController.
NodeViewController is interesting because it is not used directly, but instead from other controllers, such as Drupal\node\Controller\NodeController, which creates a new instance and then uses its view() method, so it may be a candidate for turning into a trait.
Comments
Comment #4
berdirI did this in the referenced issue now.