Skip to content

Commit

Permalink
[processing] remove obsolete methods
Browse files Browse the repository at this point in the history
(cherry picked from commit 6f6979a)
  • Loading branch information
alexbruy committed Sep 15, 2016
1 parent d6d3ad1 commit 04cd103
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions python/plugins/processing/core/Processing.py
Expand Up @@ -192,10 +192,6 @@ def reloadProvider(providerName):
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."""
Expand Down
5 changes: 0 additions & 5 deletions python/plugins/processing/core/alglist.py
Expand Up @@ -72,10 +72,5 @@ def getAlgorithm(self, name):
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()

0 comments on commit 04cd103

Please sign in to comment.