From c5787245270799ef98716dfecf84a73a0bfe70fe Mon Sep 17 00:00:00 2001
From: Marcel Koch <marcel.koch@uni-muenster.de>
Date: Fri, 18 Aug 2017 10:52:35 +0200
Subject: [PATCH] Removes unnecessary backend switch

---
 python/dune/perftool/blockstructured/spaces.py | 1 -
 python/dune/perftool/pdelab/spaces.py          | 1 -
 2 files changed, 2 deletions(-)

diff --git a/python/dune/perftool/blockstructured/spaces.py b/python/dune/perftool/blockstructured/spaces.py
index 40a764db..3991050b 100644
--- a/python/dune/perftool/blockstructured/spaces.py
+++ b/python/dune/perftool/blockstructured/spaces.py
@@ -4,7 +4,6 @@ from dune.perftool.pdelab.geometry import world_dimension
 from dune.perftool.pdelab.spaces import name_leaf_lfs
 
 
-@backend(interface="lfs_inames", name="blockstructured")
 def lfs_inames(element, restriction, count=None, context=''):
     assert not ((context == '') and (count is None))
     if count is not None:
diff --git a/python/dune/perftool/pdelab/spaces.py b/python/dune/perftool/pdelab/spaces.py
index e698d68c..791a4ccf 100644
--- a/python/dune/perftool/pdelab/spaces.py
+++ b/python/dune/perftool/pdelab/spaces.py
@@ -218,7 +218,6 @@ def lfs_iname(element, restriction, count=None, context=''):
     return _lfs_iname(element, restriction, context)
 
 
-@backend(interface="lfs_inames")
 def lfs_inames(element, restriction, count=None, context=''):
     return (lfs_iname(element, restriction, count, context),)
 
-- 
GitLab