Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify SumOperatorExpressionNode #28

Merged
merged 1 commit into from
May 8, 2018
Merged

Conversation

janisz
Copy link
Contributor

@janisz janisz commented Apr 17, 2018

Especially for @tfij 🙈

if (node == null) {
return BigDecimal.ZERO;
}
if ((node instanceof BigDecimal || node instanceof String)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

redundant parenthesis

if (left == null && right == null) {
return BigDecimal.ZERO;
if (left == null) {
return node(right);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about return nullPlus(right);

@janisz
Copy link
Contributor Author

janisz commented Apr 18, 2018

@tfij Please rerun the tests

@tfij tfij merged commit d4d29bd into allegro:master May 8, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants