summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-09-22 18:37:07 +0100
committerMark Haines <mark.haines@matrix.org>2015-09-22 18:37:07 +0100
commit7dd4f79c49e1a1ba4cf2edf8b45ed841a32a33b0 (patch)
tree84f5780be5e6a9bb3a4866a994d0ec1e6b32fc00 /synapse/storage/_base.py
parentMove NullSource out of synapse and into tests since it is only used by the tests (diff)
downloadsynapse-7dd4f79c49e1a1ba4cf2edf8b45ed841a32a33b0.tar.xz
synapse/storage/_base.py:_execute_and_decode was unused
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index c1b5423bd6..cf4ec30f48 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -374,9 +374,6 @@ class SQLBaseStore(object):
 
         return self.runInteraction(desc, interaction)
 
-    def _execute_and_decode(self, desc, query, *args):
-        return self._execute(desc, self.cursor_to_dict, query, *args)
-
     # "Simple" SQL API methods that operate on a single table with no JOINs,
     # no complex WHERE clauses, just a dict of values for columns.