We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f8aa2 commit 6f6979aCopy full SHA for 6f6979a
python/plugins/processing/core/Processing.py
@@ -194,10 +194,6 @@ def reloadProvider(providerName):
194
def getAlgorithm(name):
195
return algList.getAlgorithm(name)
196
197
- @staticmethod
198
- def getAlgorithmFromFullName(name):
199
- return algList.getAlgorithmFromFullName(name)
200
-
201
@staticmethod
202
def getObject(uri):
203
"""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