[processing] remove obsolete methods

This commit is contained in:
Alexander Bruy 2016-09-15 19:49:21 +03:00
parent 11f8aa2319
commit 6f6979ab0b
2 changed files with 0 additions and 9 deletions

View File

@ -194,10 +194,6 @@ class Processing:
def getAlgorithm(name):
return algList.getAlgorithm(name)
@staticmethod
def getAlgorithmFromFullName(name):
return algList.getAlgorithmFromFullName(name)
@staticmethod
def getObject(uri):
"""Returns the QGIS object identified by the given URI."""

View File

@ -72,10 +72,5 @@ class AlgorithmList(QObject):
if name in provider:
return provider[name]
def getAlgorithmFromFullName(self, name):
for provider in self.algs.values():
for alg in provider.values():
if alg.name == name:
return alg
algList = AlgorithmList()