()
| 2092 | } |
| 2093 | |
| 2094 | func (mod *userMod) Name() string { |
| 2095 | if self := mod.self(); self != nil { |
| 2096 | return self.Name() |
| 2097 | } |
| 2098 | return "" |
| 2099 | } |
| 2100 | |
| 2101 | func (mod *userMod) Same(other Mod) (bool, error) { |
| 2102 | otherUser, ok := other.(*userMod) |
no test coverage detected