We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd27a0c commit 91bfa78Copy full SHA for 91bfa78
python/plugins/processing/core/Processing.py
@@ -192,10 +192,6 @@ def reloadProvider(providerName):
192
def getAlgorithm(name):
193
return algList.getAlgorithm(name)
194
195
- @staticmethod
196
- def getAlgorithmFromFullName(name):
197
- return algList.getAlgorithmFromFullName(name)
198
-
199
@staticmethod
200
def getObject(uri):
201
"""Returns the QGIS object identified by the given URI."""
python/plugins/processing/core/alglist.py
@@ -72,10 +72,5 @@ def getAlgorithm(self, name):
72
if name in provider:
73
return provider[name]
74
75
- def getAlgorithmFromFullName(self, name):
76
- for provider in self.algs.values():
77
- for alg in provider.values():
78
- if alg.name == name:
79
- return alg
80
81
algList = AlgorithmList()
0 commit comments