Some Optional mistakes I still see in my project and how to prevent them on your end — Most Java developers abuse Optional to oblivion. Some don’t even know it exists. The gist of Optional — it’s not a silver bullet for null pointer exceptions. Let’s start with seven rules to follow for better Optional usage Never, ever, use null for an Optional variable or return value. Never…