vendor: Update everything

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4620
This commit is contained in:
Jakob Borg
2017-12-29 11:38:00 +00:00
parent 1296a22069
commit c24bf7ea55
1070 changed files with 294926 additions and 488191 deletions

View File

@@ -114,10 +114,7 @@ func init() {
}
func (this *MoreDefaultsB) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*MoreDefaultsB)
@@ -130,10 +127,7 @@ func (this *MoreDefaultsB) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}
@@ -153,10 +147,7 @@ func (this *MoreDefaultsB) Equal(that interface{}) bool {
}
func (this *MoreDefaultsA) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*MoreDefaultsA)
@@ -169,10 +160,7 @@ func (this *MoreDefaultsA) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}