Problem
When an annotation proceeds a method javadoc, the javadoc is not attached to the method but to the next token instead.
Code to reproduce
public class Test {
@Deprecated
/**
* Method Javadoc
* @param s variable desc
*/
Test(String s) {}
}

Expected behaviour
I would expect the JavaDoc to be attached to the method as in the following code
public class Test {
/**
* Method Javadoc
* @param s variable desc
*/
@Deprecated
Test(String s) {
}
}

Problem
When an annotation proceeds a method javadoc, the javadoc is not attached to the method but to the next token instead.
Code to reproduce
Expected behaviour
I would expect the JavaDoc to be attached to the method as in the following code