For example, let’s say I want to find all instances of using the == operator with any string object, so that I can replace it with .equals() instead. How can I do such a search? Otherwise I’d have to pick through all my code line-by-line… Thanks 🙂
Share
Eclipse doesn’t have any special search capabilities for operators. That doesn’t mean that you can’t do a file search for them though.
You’re probably better off running PMD to find issues like this for you.