Skip to content

Commit 91bfa78

Browse files
committed
[processing] remove obsolete methods
(cherry picked from commit 6f6979a)
1 parent cd27a0c commit 91bfa78

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

python/plugins/processing/core/Processing.py

-4
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,6 @@ def reloadProvider(providerName):
192192
def getAlgorithm(name):
193193
return algList.getAlgorithm(name)
194194

195-
@staticmethod
196-
def getAlgorithmFromFullName(name):
197-
return algList.getAlgorithmFromFullName(name)
198-
199195
@staticmethod
200196
def getObject(uri):
201197
"""Returns the QGIS object identified by the given URI."""

python/plugins/processing/core/alglist.py

-5
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,5 @@ def getAlgorithm(self, name):
7272
if name in provider:
7373
return provider[name]
7474

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
8075

8176
algList = AlgorithmList()

0 commit comments

Comments
 (0)