Bladeren bron

feat:删除

wangchuanjin 1 jaar geleden
bovenliggende
commit
7516d93a63
2 gewijzigde bestanden met toevoegingen van 0 en 4 verwijderingen
  1. 0 2
      matcher/freematch.go
  2. 0 2
      matcher/paymatch.go

+ 0 - 2
matcher/freematch.go

@@ -6,7 +6,6 @@ import (
 
 //免费用户
 type FreeUser struct {
-	AllUsers     map[*UserInfo]bool
 	Users        map[*UserInfo]bool
 	Title_KeyDfa *KeyDfa
 	AreaUsers    map[string]map[*UserInfo]bool
@@ -16,7 +15,6 @@ type FreeUser struct {
 //
 func NewFreeUser() *FreeUser {
 	return &FreeUser{
-		AllUsers:     map[*UserInfo]bool{},
 		Users:        map[*UserInfo]bool{},
 		AreaUsers:    map[string]map[*UserInfo]bool{},
 		SubtypeUsers: map[string]map[*UserInfo]bool{},

+ 0 - 2
matcher/paymatch.go

@@ -8,7 +8,6 @@ import (
 
 //付费用户
 type PayUser struct {
-	AllUsers        map[*UserInfo]bool
 	Users           map[*UserInfo]bool
 	Title_KeyDfa    *KeyDfa
 	Detail_KeyDfa   *KeyDfa
@@ -22,7 +21,6 @@ type PayUser struct {
 //
 func NewPayUser() *PayUser {
 	return &PayUser{
-		AllUsers:        map[*UserInfo]bool{},
 		Users:           map[*UserInfo]bool{},
 		BuyerclassUsers: map[string]map[*UserInfo]bool{},
 		AreaUsers:       map[string]map[*UserInfo]bool{},