struct replace: replace with fully qualified class name
I want to replace all occurances of
Logger log = Logger.getLogger($Class$.class);
with
Logger log = Logger.getLogger("fully.qualified.classname");
is this possible with structural replace?
Thank you!
Please sign in to leave a comment.