flipjazz 12 Share Posted March 20, 2021 When using the Dreambot APIs with the filter calls like: Bank.withdraw(item -> ...); I was wondering if you make the APIs exclude nulls? I.e., right now I seem have to do a null check like this or I'll get a nullpointer exception: Bank.withdraw(item -> item != null && item.getName().contains("..")); Was wondering if you could exclude nulls so that we can just do: Bank.withdraw(item -> item.getName().contains("..")); holic 1 Link to comment Share on other sites More sharing options...
Pandemic 2434 Share Posted March 20, 2021 I've been planning on making most of our methods more "null safe" where it makes sense, I'll look around our classes and pre-filter anything null so you wouldn't need to worry about it Thanks for the suggestion! flipjazz 1 Link to comment Share on other sites More sharing options...
Pandemic 2434 Share Posted March 24, 2021 I think I got most of them in the latest update: Let me know if you find any spots I missed Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now