[github-344] refactor equals method in XSSFHyperlinkRecord

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-07-15 21:20:32 +00:00
parent 6e34a3cebe
commit 30b20e3967
1 changed files with 6 additions and 7 deletions

View File

@ -89,17 +89,16 @@ public class XSSFHyperlinkRecord {
XSSFHyperlinkRecord that = (XSSFHyperlinkRecord) o;
if (cellRangeAddress != null ? !cellRangeAddress.equals(that.cellRangeAddress) : that.cellRangeAddress != null)
return false;
if (relId != null ? !relId.equals(that.relId) : that.relId != null) return false;
if (location != null ? !location.equals(that.location) : that.location != null) return false;
if (toolTip != null ? !toolTip.equals(that.toolTip) : that.toolTip != null) return false;
return display != null ? display.equals(that.display) : that.display == null;
return Objects.equals(cellRangeAddress, that.cellRangeAddress) &&
Objects.equals(relId, that.relId) &&
Objects.equals(location, that.location) &&
Objects.equals(toolTip, that.toolTip) &&
Objects.equals(display, that.display);
}
@Override
public int hashCode() {
return Objects.hash(cellRangeAddress,relId,location,toolTip,display);
return Objects.hash(cellRangeAddress, relId, location, toolTip, display);
}
@Override