Alwaysgaurav1 opened a new pull request, #8267:
URL: https://github.com/apache/texera/pull/8267

   ### What changes were proposed in this PR?
   
   In `Attribute.java` 
(`common/workflow-core/src/main/scala/org/apache/texera/amber/core/tuple/Attribute.java`),
 `Attribute.equals()` contained two unreachable null guards:
   ```java
   if (this.attributeName == null) {
       return that.attributeName == null;
   }
   if (this.attributeType == null) {
       return that.attributeType == null; // ignores attribute name comparison!
   }


-- 
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