Imports that are solely used in markdown comments are wrongly claimed as unused and thus are being removed
Input
import com.acme.Example;
/// This is an [Example]
public class Foo {...}
Expected
no changes
Actual
/// This is an [Example]
^^^^ missing reference
public class Foo {...}