该快速修复会建议用 <a> 标记包装链接。
示例:
class Main {
/**
* https://en.wikipedia.org/
*/
void foo() {}
}
在应用快速修复后:
class Main {
/**
* <href="https://en.wikipedia.org/">https://en.wikipedia.org/</a>
*/
void foo() {}
}
2022.1 最新变化