mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 09:57:01 +00:00
:)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user