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

@@ -180,10 +180,7 @@ func (this *NidOptEnum) VerboseEqual(that interface{}) error {
}
func (this *NidOptEnum) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*NidOptEnum)
@@ -196,10 +193,7 @@ func (this *NidOptEnum) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}
@@ -252,10 +246,7 @@ func (this *NinOptEnum) VerboseEqual(that interface{}) error {
}
func (this *NinOptEnum) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*NinOptEnum)
@@ -268,10 +259,7 @@ func (this *NinOptEnum) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}
@@ -329,10 +317,7 @@ func (this *NidRepEnum) VerboseEqual(that interface{}) error {
}
func (this *NidRepEnum) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*NidRepEnum)
@@ -345,10 +330,7 @@ func (this *NidRepEnum) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}
@@ -405,10 +387,7 @@ func (this *NinRepEnum) VerboseEqual(that interface{}) error {
}
func (this *NinRepEnum) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
return this == nil
}
that1, ok := that.(*NinRepEnum)
@@ -421,10 +400,7 @@ func (this *NinRepEnum) Equal(that interface{}) bool {
}
}
if that1 == nil {
if this == nil {
return true
}
return false
return this == nil
} else if this == nil {
return false
}