File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
library/model/src/main/kotlin/org/cru/godtools/model Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,8 @@ class Tool(
209
209
isScreenShareDisabled != other.isScreenShareDisabled -> false
210
210
shares != other.shares -> false
211
211
pendingShares != other.pendingShares -> false
212
+ primaryLocale != other.primaryLocale -> false
213
+ parallelLocale != other.parallelLocale -> false
212
214
apiId != other.apiId -> false
213
215
metatoolCode != other.metatoolCode -> false
214
216
defaultVariantCode != other.defaultVariantCode -> false
@@ -234,6 +236,8 @@ class Tool(
234
236
result = 31 * result + isScreenShareDisabled.hashCode()
235
237
result = 31 * result + shares
236
238
result = 31 * result + pendingShares
239
+ result = 31 * result + (primaryLocale?.hashCode() ? : 0 )
240
+ result = 31 * result + (parallelLocale?.hashCode() ? : 0 )
237
241
result = 31 * result + (apiId?.hashCode() ? : 0 )
238
242
result = 31 * result + (metatoolCode?.hashCode() ? : 0 )
239
243
result = 31 * result + (defaultVariantCode?.hashCode() ? : 0 )
You can’t perform that action at this time.
0 commit comments