Change record status: 
Project: 
Introduced in branch: 
8.1.x
Description: 

The protected method \Drupal\Core\Field\WidgetBase::getFilteredDescription() was added to support replacing tokens in field descriptions.

Before:

  $description = FieldFilteredMarkup::create(\Drupal::token()->replace($this->fieldDefinition->getDescription()));

After:

  $description = $this->getFilteredDescription();
Impacts: 
Module developers