Skip to content

Commit 22ace58

Browse files
增加Expression比较的方法
1 parent 19243cb commit 22ace58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/developframework/expression/ArrayExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public String toString() {
8888
@Override
8989
public int hashCode() {
9090
int hash = 7;
91-
if(parentExpression != null) {
91+
if(this.hasParentExpression()) {
9292
hash = hash * 31 + parentExpression.hashCode();
9393
}
9494
hash = hash * 31 + propertyName.hashCode();

0 commit comments

Comments
 (0)