Fixes an issue where imports were added to the middle of a scaladoc block. This happened if the scaladoc block was the first block after a package definition.
package blah.de.blee
/** Some scaladoc
* More doc
* Still more doc
*/
When Scuggest added the first import, it was added on the 2nd line of the scaladoc:
package blah.de.blee
/** Some scaladoc
* import someclass
* More doc
* Still more doc
*/
After the fix, imports are added before the scaladoc block:
package blah.de.blee
import someclass
/** Some scaladoc
* More doc
* Still more doc
*/