fix String protobuf generator

This commit is contained in:
deads2k
2016-07-20 11:10:28 -04:00
parent 60dd4a5d26
commit d50506345c
4 changed files with 9 additions and 11 deletions

View File

@@ -376,16 +376,6 @@ func sovGenerated(x uint64) (n int) {
func sozGenerated(x uint64) (n int) {
return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (this *ExtraValue) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ExtraValue{`,
`Items:` + fmt.Sprintf("%v", this.Items) + `,`,
`}`,
}, "")
return s
}
func (this *TokenReview) String() string {
if this == nil {
return "nil"