You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2020/09/24 22:37:17 UTC

[airavata] branch param-sweep updated: Fixing the bug is equals of ExperimentOutputValuePK.java

This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch param-sweep
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/param-sweep by this push:
     new c12e7fb  Fixing the bug is equals of ExperimentOutputValuePK.java
c12e7fb is described below

commit c12e7fbebbff6d01d795b8147b408b006a63d633
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Thu Sep 24 18:37:03 2020 -0400

    Fixing the bug is equals of ExperimentOutputValuePK.java
---
 .../registry/core/entities/expcatalog/ExperimentOutputValuePK.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentOutputValuePK.java b/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentOutputValuePK.java
index 4286803..7449aad 100644
--- a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentOutputValuePK.java
+++ b/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentOutputValuePK.java
@@ -58,7 +58,7 @@ public class ExperimentOutputValuePK implements Serializable {
         if (this == other) {
             return true;
         }
-        if (!(other instanceof ExperimentOutputPK)) {
+        if (!(other instanceof ExperimentOutputValuePK)) {
             return false;
         }
         ExperimentOutputValuePK castOther = (ExperimentOutputValuePK) other;