Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to delete all system.out.println statements of the project automatically including all multiline Sop statements [duplicate]

Tags:

java

eclipse

Actually I want to automate the process of removing all the System.out.println() statements from the entire project before delivering the project to the client. How to do it?

like image 979
user3728785 Avatar asked Nov 01 '22 22:11

user3728785


1 Answers

Press ctrl+H go to File search. Fill containing text as System.out.println(*); , File name pattern as *.* and click on Replace Button.

After the search it prompt for a replacing text, Press OK.

like image 176
rinuthomaz Avatar answered Nov 12 '22 03:11

rinuthomaz