Fix Formatting

This commit is contained in:
2021-01-18 16:24:28 -05:00
parent b05b1eb9b6
commit 3fd6e7b957
9 changed files with 37 additions and 38 deletions

View File

@@ -31,8 +31,8 @@ func (sm *SessionManager) Delete(key string) {
sm.mutex.Lock()
defer sm.mutex.Unlock()
_, exists := sm.values[key]
if !exists {
return
}
delete(sm.values, key)
if !exists {
return
}
delete(sm.values, key)
}