Skip to content

Commit 04cd103

Browse files
committedSep 15, 2016
[processing] remove obsolete methods
(cherry picked from commit 6f6979a)
1 parent d6d3ad1 commit 04cd103

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed
 

‎python/plugins/processing/core/Processing.py

Lines changed: 0 additions & 4 deletions
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

Lines changed: 0 additions & 5 deletions
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)
Please sign in to comment.