diff --git a/modules/features_ui/src/Form/AssignmentConfigureForm.php b/modules/features_ui/src/Form/AssignmentConfigureForm.php
index 5bd7ecc..b5d6f58 100644
--- a/modules/features_ui/src/Form/AssignmentConfigureForm.php
+++ b/modules/features_ui/src/Form/AssignmentConfigureForm.php
@@ -165,7 +165,6 @@ class AssignmentConfigureForm extends FormBase {
       }
     }
 
-    $settings = $current_bundle->getSettings();
     $enabled_methods = $current_bundle->getEnabledAssignments();
     $methods_weight = $current_bundle->getAssignmentWeights();
 
diff --git a/src/Entity/FeaturesBundle.php b/src/Entity/FeaturesBundle.php
index 5d854d9..c06d31f 100644
--- a/src/Entity/FeaturesBundle.php
+++ b/src/Entity/FeaturesBundle.php
@@ -271,20 +271,6 @@ class FeaturesBundle extends ConfigEntityBase implements FeaturesBundleInterface
   /**
    * {@inheritdoc}
    */
-  public function getSettings() {
-    return $this->settings;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function setSettings(array $settings) {
-    $this->settings = $settings;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function remove() {
     $this->delete();
   }
diff --git a/src/FeaturesBundleInterface.php b/src/FeaturesBundleInterface.php
index 08438df..b067105 100644
--- a/src/FeaturesBundleInterface.php
+++ b/src/FeaturesBundleInterface.php
@@ -233,28 +233,6 @@ interface FeaturesBundleInterface {
   public function setAssignmentSettings($method_id, array $settings);
 
   /**
-   * Gets global settings for a bundle.
-   *
-   * @return array
-   *   An array with the following keys:
-   *   - folder: subfolder to export modules within this package set.
-   *   - profile: boolean to determine if set is a profile.
-   *
-   * @see \Drupal\features\FeaturesBundleInterface::setSettings()
-   */
-  public function getSettings();
-
-  /**
-   * Sets the global settings for a bundle.
-   *
-   * @param array $settings
-   *   An array of setting values.
-   *
-   * @see \Drupal\features\FeaturesBundleInterface::getSettings()
-   */
-  public function setSettings(array $settings);
-
-  /**
    * Saves the bundle to the active config.
    */
   public function save();
