Aviator 4.2.8 released
killme2008
released this
19 Dec 04:03
·
512 commits
to master
since this release
Main changes:
- Fixed #181
- Wraps function returned value to ensure it's not null (replaced by
AviatorNil
automatically). For example, it will throw aNullPointerException
on runtime if the custom function returns java's null right now, you should returnAviatorNil.Nil
instead. But with this improvement, you can just return thenull
in custom functions, aviator will replace thenull
withAviatorNil
automatically for you.