src/eric7/Project/Project.py

branch
eric7
changeset 9612
93b496cc3c88
parent 9610
b45bccbdf331
child 9624
b47dfa7a137d
diff -r af03537d56b2 -r 93b496cc3c88 src/eric7/Project/Project.py
--- a/src/eric7/Project/Project.py	Sun Dec 11 18:24:41 2022 +0100
+++ b/src/eric7/Project/Project.py	Mon Dec 12 16:35:21 2022 +0100
@@ -877,9 +877,9 @@
 
         # File categories handled by activated plugin project browsers
         for fileCategory in [
-            f for f in self.__fileCategoriesRepository.keys() if f not in [
-                "SOURCES", "FORMS", "RESOURCES", "TRANSLATIONS", "OTHERS"
-            ]
+            f
+            for f in self.__fileCategoriesRepository.keys()
+            if f not in ["SOURCES", "FORMS", "RESOURCES", "TRANSLATIONS", "OTHERS"]
         ]:
             for ext in self.__fileCategoriesRepository[
                 fileCategory
@@ -6677,24 +6677,6 @@
         self.__makeProcess = None
 
     #########################################################################
-    ## Below are methods implementing some 'IDL' support functions
-    #########################################################################
-
-    def hasDefaultIdlCompilerParameters(self):
-        """
-        Public method to test, if the project contains the default IDL compiler
-        parameters.
-
-        @return flag indicating default parameter set
-        @rtype bool
-        """
-        return self.__pdata["IDLPARAMS"] == {
-            "IncludeDirs": [],
-            "DefinedNames": [],
-            "UndefinedNames": [],
-        }
-
-    #########################################################################
     ## Below are methods implementing some 'UIC' support functions
     #########################################################################
 

eric ide

mercurial