Here are two annoying things
I'd like to see fixed.
IDEA insists that Javadoc
comments be formatted like this:
/**
*b
*/
Where "b" is a blank. Our
preferred formatting uses a tab instead. There's no way to customize this, and
the IDE won't duplicate the lead-in manually typed on the previous line, which
would be another reasonable thing to do.
Second, the import of an
accessible inner class is flagged as an error by the parser:
import
java.util.Map.Entry; // flagged as a parse error
This is legal Java syntax. I'm
rather surprised this bug has survived this
long.
