in src/main/java/net/hydromatic/linq4j/expressions/TryStatement.java [60:85]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
TryStatement that = (TryStatement) o;
if (!body.equals(that.body)) {
return false;
}
if (!catchBlocks.equals(that.catchBlocks)) {
return false;
}
if (fynally != null ? !fynally.equals(that.fynally) : that.fynally
!= null) {
return false;
}
return true;
}