Skip to content

Commit 6f6979a

Browse files
committed
[processing] remove obsolete methods
1 parent 11f8aa2 commit 6f6979a

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
@@ -194,10 +194,6 @@ def reloadProvider(providerName):
194194
def getAlgorithm(name):
195195
return algList.getAlgorithm(name)
196196

197-
@staticmethod
198-
def getAlgorithmFromFullName(name):
199-
return algList.getAlgorithmFromFullName(name)
200-
201197
@staticmethod
202198
def getObject(uri):
203199
"""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)