diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
index 2abe98d..924f399 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
@@ -859,6 +859,8 @@ function field_langcode(EntityInterface $entity) {
    *
    * Borrowed from field_ui.
    *
+   * @todo Remove this when https://drupal.org/node/1982138 gets in.
+   *
    * @param string $field_type
    *   (optional) The field type to get options for.
    *
@@ -884,7 +886,8 @@ protected function formatterOptions($field_type = NULL) {
     if ($field_type) {
       return !empty($this->formatterOptions[$field_type]) ? $this->formatterOptions[$field_type] : array();
     }
-    return $options;
+
+    return $this->formatterOptions;
   }
 
 }
