Remove unwanted code (that search for information into files found using the TOOLCHAI...
[bertos.git] / wizard / BProject.py
index 60ebb4aba5d8ede34235b2f0c2f6a0342f2624c2..7cc1da496432688f9cb5d44ac3c26cd039203667 100644 (file)
@@ -116,7 +116,7 @@ class BProject(object):
         self.loadModuleData(True)
         setEnabledModules(self, project_data["ENABLED_MODULES"])
 
-    def loadProjectPresets(self, preset_directory):
+    def loadProjectPresets(self):
         """
         Load the default presets (into the const.PREDEFINED_BOARDS_DIR).
         """
@@ -164,11 +164,6 @@ class BProject(object):
                         list_info_dict.update(list_dict)
                     except ParseError, err:
                         raise DefineException.EnumDefineException(path, err.line_number, err.line)
-        # NOTE: These lines probably should be removed
-        for filename, path in self.findDefinitions("*_" + self.infos["CPU_INFOS"]["TOOLCHAIN"] + ".h"):
-            comment_list = getCommentList(open(path + "/" + filename, "r").read())
-            list_info_dict.update(loadDefineLists(comment_list))
-        # end of lines to be removed
         for tag in self.infos["CPU_INFOS"]["CPU_TAGS"]:
             for filename, path in self.findDefinitions("*_" + tag + ".h"):
                 comment_list = getCommentList(open(path + "/" + filename, "r").read())