You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2022/04/20 19:29:19 UTC

[GitHub] [beam] miamihotline commented on a diff in pull request #17225: [BEAM-14205] [Playground] Tests for app states

miamihotline commented on code in PR #17225:
URL: https://github.com/apache/beam/pull/17225#discussion_r854484638


##########
playground/frontend/lib/modules/examples/repositories/models/get_example_request.dart:
##########
@@ -23,4 +23,14 @@ class GetExampleRequestWrapper {
   final SDK sdk;
 
   GetExampleRequestWrapper(this.path, this.sdk);
+
+  @override
+  bool operator ==(Object other) =>
+      identical(this, other) ||
+      other is GetExampleRequestWrapper &&
+          path == other.path &&
+          sdk == other.sdk;
+
+  @override
+  int get hashCode => path.hashCode ^ sdk.hashCode;

Review Comment:
   Hello, @KonradJanica! Thank you for the review, I'll fix that in the next commit.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org