bug: in FQN mode, javadoc references are printed as the original ones
- Dominant language
- Java
- Stars
- 2k
- Forks
- 392
- Avg merge
- 11h 24m
- Merged PRs (30d)
- 36
Description
See: https://ci.inria.fr/sos/job/JUnit/1081/console
We got a class like this:
```java
/**
*
*
* @deprecated Included for backwards compatibility with JUnit 4.4. Will be
* removed in the next major release. Please use
* {@link BlockJUnit4ClassRunner} in place of {@link JUnit4ClassRunner}.
*/
@java.lang.Deprecated
public class MethodValidator {
```
instead of:
```java
/**
*
*
* @deprecated Included for backwards compatibility with JUnit 4.4. Will be
* removed in the next major release. Please use
* {@link org.junit.runners.BlockJUnit4ClassRunner} in place of {@link JUnit4ClassRunner}.
*/
@java.lang.Deprecated
public class MethodValidator {
[...]
```
Contributor guide
Assessment
This issue has not been assessed yet.