Is there a way to make Eclipse\'s built-in Java code formatter ignore comments? Whenever I run it, it turns this:
/*
* PSEUDOCODE
* Read in us
If you want to supress formatting in eclipse, you can always wrap content that is intended to NOT TO BE FORMATED into
tag. Javadoc formatter will detect that tag, and leave everything between that tags unformatted.UNFORMATTED CONTENT
Pros:
Cons: