diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-03-12 13:31:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-12 13:31:22 +0100 |
| commit | 80fe2f439102dc748ff8ddd661d94935915bd3e7 (patch) | |
| tree | 7d22249be984e220486b3e502dca5320d899a12b | |
| parent | c925448498bfcc5f2573b38031e4adf9d09ff51d (diff) | |
Removed unused clean() method in file-based session.
Unused since its introduction in bcf7e9a9fe037eff4d5dea0cdd8c35104590e1a8.
| -rw-r--r-- | django/contrib/sessions/backends/file.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/contrib/sessions/backends/file.py b/django/contrib/sessions/backends/file.py index d3ba8b11dd..6f54690a9c 100644 --- a/django/contrib/sessions/backends/file.py +++ b/django/contrib/sessions/backends/file.py @@ -190,9 +190,6 @@ class SessionStore(SessionBase): except OSError: pass - def clean(self): - pass - @classmethod def clear_expired(cls): storage_path = cls._get_storage_path() |
