Reputation: 81
I'm currently working on a project and an I used several print commands in order to see if all is going well. But all these prints take some execution time and since the program is running well I was wondering if there is a way to comment or delete all of those commands at once.
Upvotes: 1
Views: 75
Reputation: 1239
Generally you can perform a "Replace in Projects...".
Presuming you code in JAVA:
System.out.print
//System.out.print
It is easy as that. Not even a need for Regular expression.
Have Fun.
Upvotes: 1