diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:37:07 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:37:07 +0100 |
commit | 7dd4f79c49e1a1ba4cf2edf8b45ed841a32a33b0 (patch) | |
tree | 84f5780be5e6a9bb3a4866a994d0ec1e6b32fc00 /synapse | |
parent | Move NullSource out of synapse and into tests since it is only used by the tests (diff) | |
download | synapse-7dd4f79c49e1a1ba4cf2edf8b45ed841a32a33b0.tar.xz |
synapse/storage/_base.py:_execute_and_decode was unused
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/_base.py | 3 |
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. |