Skip to content

Commit

Permalink
Correct equals method in SizeFacet/SizeFacetInfo (#4768)
Browse files Browse the repository at this point in the history
  • Loading branch information
grimreaper authored and karianna committed Dec 29, 2018
1 parent 93eca9e commit 2cc49dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/src/java/pcgen/cdom/facet/model/SizeFacet.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public boolean equals(Object o)
if (o instanceof SizeFacetInfo)
{
SizeFacetInfo sfi = (SizeFacetInfo) o;
return (racialSizeInt == sfi.racialSizeInt) && sizeAdj.equals(sizeAdj);
return (racialSizeInt == sfi.racialSizeInt) && sizeAdj.equals(sfi.sizeAdj);
}
return false;
}
Expand Down

0 comments on commit 2cc49dd

Please sign in to comment.