FANNG1 commented on code in PR #5995:
URL: https://github.com/apache/gravitino/pull/5995#discussion_r1897718087


##########
core/src/main/java/org/apache/gravitino/credential/CatalogCredentialContext.java:
##########
@@ -35,4 +35,27 @@ public CatalogCredentialContext(String userName) {
   public String getUserName() {
     return userName;
   }
+
+  @Override
+  public int hashCodeIgnoreUser() {
+    return 9999;

Review Comment:
   removed



##########
core/src/main/java/org/apache/gravitino/credential/CatalogCredentialContext.java:
##########
@@ -35,4 +35,27 @@ public CatalogCredentialContext(String userName) {
   public String getUserName() {
     return userName;
   }
+
+  @Override
+  public int hashCodeIgnoreUser() {
+    return 9999;
+  }
+
+  @Override
+  public boolean equalsIgnoreUser(Object o) {
+    if (this == o) {
+      return true;
+    }
+    if (o == null || !(o instanceof CatalogCredentialContext)) {
+      return false;
+    }
+    return true;

Review Comment:
   removed



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to