flipjazz 13 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(".."));
Pandemic 2853 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!
Pandemic 2853 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.