0

我收到以下错误:

/Users/rin/Development/Java/Libs/JavaClearHttp/src/main/java/com/levelrin/javaclearhttp/record/Record.java:22:错误:意外文本
 * {@link this#toString()} 方法可用于一次查看所有信息。
       ^

javadoc 看起来像这样:

/**
 * It's responsible for providing the request and response records.
 * The {@link this#toString()} method can be useful for viewing all information at once.
 */

有什么建议么?

4

1 回答 1

1

this关键字导致了问题。我改用类名,问题就消失了。

前:

{@link this#toString()}

后:

{@link Record#toString()}
于 2019-11-10T12:41:40.563 回答