We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f417a1d commit c44bb17Copy full SHA for c44bb17
1 file changed
src/main/java/com/google/api/generator/gapic/model/Field.java
@@ -85,7 +85,7 @@ && isProto3Optional() == other.isProto3Optional()
85
@Override
86
public int hashCode() {
87
return 17 * name().hashCode()
88
- + 57 * originalName().hashCode()
+ + 31 * originalName().hashCode()
89
+ 19 * type().hashCode()
90
+ (isMessage() ? 1 : 0) * 23
91
+ (isEnum() ? 1 : 0) * 29
0 commit comments