1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00
This commit is contained in:
Gerasimos (Makis) Maropoulos
2021-01-09 05:41:20 +02:00
parent 72c2dafd2e
commit 8aedf6bc32
36 changed files with 99 additions and 130 deletions

View File

@@ -1,7 +1,6 @@
package sessions
import (
"math"
"reflect"
"strconv"
"sync"
@@ -327,9 +326,6 @@ func (s *Session) GetUint64(key string) (uint64, error) {
if err != nil {
return 0, err
}
if val > math.MaxUint64 {
break
}
return uint64(val), nil
case uint8:
return uint64(vv), nil