Issue #2884223 by kiamlaluno, Dinesh18: In \Drupal\Core\State\State, parent::delete($key) is called twice

8.4.x
Nathaniel Catchpole 2017-06-09 12:48:58 +01:00
parent c122124367
commit a75874bb6e
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class State extends CacheCollector implements StateInterface {
*/ */
public function delete($key) { public function delete($key) {
parent::delete($key); parent::delete($key);
$this->deleteMultiple([$key]); $this->keyValueStore->delete($key);
} }
/** /**