Browse Source

Don't use this

Volodymyr Tkach 2 years ago
parent
commit
95be1831c7
1 changed files with 8 additions and 8 deletions
  1. 8 8
      session/bool.go

+ 8 - 8
session/bool.go

@@ -1,25 +1,25 @@
 package session
 
-func (this *Session) IsSetBool(name string) bool {
-	if _, ok := this.v.Bool[name]; ok {
+func (s *Session) IsSetBool(name string) bool {
+	if _, ok := s.v.Bool[name]; ok {
 		return true
 	} else {
 		return false
 	}
 }
 
-func (this *Session) GetBool(name string, def bool) bool {
-	if v, ok := this.v.Bool[name]; ok {
+func (s *Session) GetBool(name string, def bool) bool {
+	if v, ok := s.v.Bool[name]; ok {
 		return v
 	} else {
 		return def
 	}
 }
 
-func (this *Session) SetBool(name string, value bool) {
-	isset := this.IsSetBool(name)
-	this.v.Bool[name] = value
+func (s *Session) SetBool(name string, value bool) {
+	isset := s.IsSetBool(name)
+	s.v.Bool[name] = value
 	if isset || value {
-		this.c = true
+		s.c = true
 	}
 }