Javadoc parameters are merged improperly
Brought to you by:
avernet
[Reported by Dave Kriewall by email]
Javadoc parameters are merged improperly onto the line
before. E.g.
/**
* Routine to determine if the psiElement overlaps
the region to be
reformatted.
*
* @param psiElement
* @return true if element is within the selected
region to be tabified.
*/
was wrapped several different ways when I tried several
times:
/** Routine to determine if the psiElement overlaps
the region to be
reformatted. @param psiElement @return true if
element is within the selected region to be tabified. /
-or-
/** Routine to determine if the psiElement overlaps
the region to be
reformatted.
*
* @param psiElement @return true if element is
within the selected
region to be tabified.
*/