I want to remove all the Log statements that I had added when I was making my android project. This is because I am now shipping the final project to my client.
Is there a shortcut which will automatically find all the Log statements and delete them?
This would spare the labor of going to individual Log statements and then deleting them.
Use Eclipse, type
android.util.Log, place your cursor on the wordLog, and press ctrl+shift+g or cmd+shift+g to find all references to it.