(y *SASLConfig)
| 376 | } |
| 377 | |
| 378 | func (x *SASLConfig) Equal(y *SASLConfig) bool { |
| 379 | if x == y { |
| 380 | return true |
| 381 | } |
| 382 | if x == nil || y == nil { |
| 383 | return x == nil && y == nil |
| 384 | } |
| 385 | if !x.GetKrbConfig().Equal(y.GetKrbConfig()) { |
| 386 | return false |
| 387 | } |
| 388 | return true |
| 389 | } |
| 390 | |
| 391 | func (x *KerberosConfig) Equal(y *KerberosConfig) bool { |
| 392 | if x == y { |
nothing calls this directly
no test coverage detected