By default Android Studio automatically adds a header comment to all new classes, e.g.
/**
* Created by Dan on 11/20/13.
*/
Where is the
In case you want to remove all comments which have already been created. Hit Ctrl + Shift + R to open the Replace in path dialog. Check the Regex option and replace
/\*\*\n \* Created by .*\n \*/
with nothing.
The regex was originally posted by nerdinand as comment to the following answer. Although I asked him, he didn't create an answer for several months. That is why I did now, so people can find this more easily.