Skip to content

Commit b16b68f

Browse files
committed
fix: standardize @author Javadoc format
- Change [@loong Wan](url) to <a href="url">Loong Wan</a> - Follow standard Javadoc @author tag format
1 parent dc43681 commit b16b68f

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/main/java/io/github/easy4j/claudecode/ClaudeCodeClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
* the underlying executor does not hold any persistent resources
7070
* beyond a per-invocation subprocess.</p>
7171
*
72-
* @author [@Loong Wan](https://github.com/loong10k)
72+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
7373
* @since 3.0.0
7474
* @see ClaudeCodeCli
7575
* @see ClaudeCodeCliExecutor
@@ -1205,7 +1205,7 @@ private ClaudeResult findResult(List<ClaudeMessage> messages) {
12051205
* that contains the parsed message stream, the final result envelope
12061206
* and the raw CLI result for diagnostics.
12071207
*
1208-
* @author [@Loong Wan](https://github.com/loong10k)
1208+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
12091209
* @since 3.0.0
12101210
*/
12111211
public static class StreamResult {

src/main/java/io/github/easy4j/claudecode/ClaudeCodeClientConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* can be populated from Spring's {@code @ConfigurationProperties}, plain
3131
* Java, JSON or a builder.</p>
3232
*
33-
* @author [@Loong Wan](https://github.com/loong10k)
33+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3434
* @since 3.0.0
3535
* @see ClaudeCodeClient
3636
*/

src/main/java/io/github/easy4j/claudecode/cli/ClaudeCodeCli.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* ({@link #namedSession(String, String)}).</li>
5050
* </ul>
5151
*
52-
* @author [@Loong Wan](https://github.com/loong10k)
52+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
5353
* @since 3.0.0
5454
* @see ClaudeCodeCliExecutor
5555
* @see <a href="https://docs.anthropic.com/en/docs/claude-code">Claude Code CLI</a>
@@ -1082,7 +1082,7 @@ public ClaudeCodeCliResult autoMode() {
10821082
* produces the final argument array passed to
10831083
* {@link ClaudeCodeCliExecutor#execute(String...)}.</p>
10841084
*
1085-
* @author [@Loong Wan](https://github.com/loong10k)
1085+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
10861086
* @since 3.0.0
10871087
*/
10881088
public static class PrintOptions {

src/main/java/io/github/easy4j/claudecode/cli/ClaudeCodeCliExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* that returns {@code true} when the CLI is reachable on the local
3737
* {@code PATH} (or via {@link ClaudeCodeClientConfig#getLocalExecutable()}).</p>
3838
*
39-
* @author [@Loong Wan](https://github.com/loong10k)
39+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4040
* @since 3.0.0
4141
* @see ClaudeCodeCli
4242
* @see ClaudeCodeCliResult

src/main/java/io/github/easy4j/claudecode/cli/ClaudeCodeCliResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* ({@link #isSuccess()}, {@link #isTimeout()}) make common success and
2626
* timeout checks cheap.</p>
2727
*
28-
* @author [@Loong Wan](https://github.com/loong10k)
28+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2929
* @since 3.0.0
3030
*/
3131
@Data

src/main/java/io/github/easy4j/claudecode/model/ClaudeAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* ({@link JsonIgnoreProperties}). Snake-case names such as {@code session_id}
2828
* are converted to camel-case via {@link JsonProperty}.</p>
2929
*
30-
* @author [@Loong Wan](https://github.com/loong10k)
30+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3131
* @since 3.0.0
3232
*/
3333
@Data

src/main/java/io/github/easy4j/claudecode/model/ClaudeMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* {@link #toolUseResult} values are typed as {@link Object} so they can
3131
* hold either text, structured content blocks or arbitrary JSON.</p>
3232
*
33-
* @author [@Loong Wan](https://github.com/loong10k)
33+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3434
* @since 3.0.0
3535
* @see ClaudeResult
3636
*/

src/main/java/io/github/easy4j/claudecode/model/ClaudeResult.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* ({@link #totalCostUsd}) and a nested {@link Usage} breakdown of token
2929
* consumption.</p>
3030
*
31-
* @author [@Loong Wan](https://github.com/loong10k)
31+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3232
* @since 3.0.0
3333
* @see ClaudeMessage
3434
*/
@@ -56,7 +56,7 @@ public class ClaudeResult {
5656
/**
5757
* Token usage breakdown for a single invocation.
5858
*
59-
* @author [@Loong Wan](https://github.com/loong10k)
59+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
6060
* @since 3.0.0
6161
*/
6262
@Data

src/test/java/io/github/easy4j/claudecode/cli/FakeClaudeCodeCliExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* <p>This class is package-private and intended solely for unit tests.</p>
2929
*
30-
* @author [@Loong Wan](https://github.com/loong10k)
30+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3131
* @since 3.0.0
3232
* @see ClaudeCodeCliExecutor
3333
*/

0 commit comments

Comments
 (0)