-
-
Notifications
You must be signed in to change notification settings - Fork 80
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
OGNL-102 Improves performance when null was returned #204
Conversation
3c76136
to
e4cd96a
Compare
SonarCloud Quality Gate failed. |
e4cd96a
to
f17a24c
Compare
ad0a395
to
46079a1
Compare
SonarCloud Quality Gate failed.
|
This PR introduces options to short-circuit chain operations on
null
result in case if accessing property of the object, eg.obj1.property
whereobj1
is null orobj1.obj2.property
whereobj2
is null.This functionality is enabled by default, use
-Dognl.chain.short-circuit=false
to disable it.Refs #140
Refs OGNL-102