From 1760ae4285e64fdedbc26d5dbe54e9b06c2c9c0d Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Fri, 23 Oct 2009 22:27:12 +0000
Subject: [PATCH] Remove feeds.defaults.inc mechanism.

---
 README.txt   | 6 ------
 feeds.module | 5 -----
 2 files changed, 11 deletions(-)

diff --git a/README.txt b/README.txt
index cabce3aa..184dc270 100644
--- a/README.txt
+++ b/README.txt
@@ -94,12 +94,6 @@ Description: The number of feeds to refresh on cron time.
              If drupal_queue is enabled, the maximum number of feeds to move to
              queue.
 
-Name:        feeds_use_defaults
-Default:     TRUE
-Description: Whether or not to use default content type and importer
-             configurations. Set to FALSE if you would like to use Feeds without
-             any default configurations.
-
 Glossary
 ========
 
diff --git a/feeds.module b/feeds.module
index f7ea8283..a06d00e5 100644
--- a/feeds.module
+++ b/feeds.module
@@ -6,11 +6,6 @@
  * Feeds - basic API functions and hook implementations.
  */
 
-// Include default definitions of content types and importer configurations.
-if (variable_get('feeds_use_defaults', TRUE)) {
-  include(dirname(__FILE__) .'/feeds.defaults.inc');
-}
-
 // Vague request time. Use as common point of reference and to avoid costly
 // calls to time().
 define('FEEDS_REQUEST_TIME', time());
-- 
GitLab