0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-05 10:48:46 +02:00

Move construction of object within if block

This commit is contained in:
Erik Johnston 2015-02-10 11:01:15 +00:00
parent 164f6b9256
commit d19e2ed02f

View file

@ -306,13 +306,13 @@ class StateHandler(object):
new_state = unconflicted_state
new_state.update(resolved_state)
cache = _StateCacheEntry(
state=new_state,
state_group=None,
ts=self.clock.time_msec()
)
if self._state_cache is not None:
cache = _StateCacheEntry(
state=new_state,
state_group=None,
ts=self.clock.time_msec()
)
self._state_cache[frozenset(event_ids)] = cache
defer.returnValue((None, new_state, prev_states))