From 540b55836a7eff3de13acfb54712fa931a8b4a52 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 18 Oct 2019 10:49:32 +0300 Subject: Revert "Add: update_resource" This reverts commit 80539a84aaa17aca1da9c56794e41a114e222041. --- ick2/persistent.py | 9 --------- 1 file changed, 9 deletions(-) (limited to 'ick2/persistent.py') diff --git a/ick2/persistent.py b/ick2/persistent.py index d323db7..d865207 100644 --- a/ick2/persistent.py +++ b/ick2/persistent.py @@ -45,9 +45,6 @@ class PersistentStateInterface: # pragma: no cover def write_resource(self, token, kind, rid, resource): raise NotImplementedError() - def update_resource(self, token, kind, rid, resource): - raise NotImplementedError() - def remove_resource(self, token, kind, rid): raise NotImplementedError() @@ -75,9 +72,6 @@ class MemoryPersistentState(PersistentStateInterface): self._res[kind] = {} self._res[kind][rid] = resource - def update_resource(self, token, kind, rid, resource): - self.write_resource(token, kind, rid, resource) - def remove_resource(self, token, kind, rid): if kind not in self._res or rid not in self._res[kind]: raise ick2.NotFound(kind=kind, rid=rid) @@ -107,9 +101,6 @@ class MuckPersistentState(PersistentStateInterface): self._res[kind] = {} self._res[kind][rid] = resource - def update_resource(self, token, kind, rid, resource): - self.write_resource(token, kind, rid, resource) - def remove_resource(self, token, kind, rid): if kind not in self._res or rid not in self._res[kind]: raise ick2.NotFound(kind=kind, rid=rid) -- cgit v1.2.1