We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19243cb commit 22ace58Copy full SHA for 22ace58
src/main/java/com/github/developframework/expression/ArrayExpression.java
@@ -88,7 +88,7 @@ public String toString() {
88
@Override
89
public int hashCode() {
90
int hash = 7;
91
- if(parentExpression != null) {
+ if(this.hasParentExpression()) {
92
hash = hash * 31 + parentExpression.hashCode();
93
}
94
hash = hash * 31 + propertyName.hashCode();
0 commit comments