File tree Expand file tree Collapse file tree 4 files changed +22
-6
lines changed
src/main/kotlin/spp/protocol/instrument Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,10 @@ data class LiveBreakpoint(
73
73
/* *
74
74
* Specify explicitly so Kotlin doesn't override.
75
75
*/
76
- override fun hashCode (): Int {
77
- return super .hashCode()
78
- }
76
+ override fun equals (other : Any? ): Boolean = super .equals(other)
77
+
78
+ /* *
79
+ * Specify explicitly so Kotlin doesn't override.
80
+ */
81
+ override fun hashCode (): Int = super .hashCode()
79
82
}
Original file line number Diff line number Diff line change @@ -80,7 +80,10 @@ data class LiveLog(
80
80
/* *
81
81
* Specify explicitly so Kotlin doesn't override.
82
82
*/
83
- override fun hashCode (): Int {
84
- return super .hashCode()
85
- }
83
+ override fun equals (other : Any? ): Boolean = super .equals(other)
84
+
85
+ /* *
86
+ * Specify explicitly so Kotlin doesn't override.
87
+ */
88
+ override fun hashCode (): Int = super .hashCode()
86
89
}
Original file line number Diff line number Diff line change @@ -85,6 +85,11 @@ data class LiveMeter(
85
85
86
86
fun toMetricId (): String = " spp_" + toMetricIdWithoutPrefix()
87
87
88
+ /* *
89
+ * Specify explicitly so Kotlin doesn't override.
90
+ */
91
+ override fun equals (other : Any? ): Boolean = super .equals(other)
92
+
88
93
/* *
89
94
* Specify explicitly so Kotlin doesn't override.
90
95
*/
Original file line number Diff line number Diff line change @@ -72,6 +72,11 @@ data class LiveSpan(
72
72
return json
73
73
}
74
74
75
+ /* *
76
+ * Specify explicitly so Kotlin doesn't override.
77
+ */
78
+ override fun equals (other : Any? ): Boolean = super .equals(other)
79
+
75
80
/* *
76
81
* Specify explicitly so Kotlin doesn't override.
77
82
*/
You can’t perform that action at this time.
0 commit comments