Skip to content

Commit 5b8e6cb

Browse files
committed
docs: unify @author tag to @author <a href="https://github.com/loong10k">Loong Wan</a>
1 parent cb00234 commit 5b8e6cb

57 files changed

Lines changed: 242 additions & 143 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/io/github/easy4j/opencode/HttpCallCancellation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* when the underlying HTTP call should be aborted. The {@link #onCancel(Runnable)} method
88
* returns an {@link AutoCloseable} that, when closed, unregisters the callback.</p>
99
*
10-
* @author [@Loong Wan](https://github.com/loong10k)
10+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1111
* @since 3.0.0
1212
* @see io.github.easy4j.opencode.api.OpenCodeHttpClient
1313
*/

src/main/java/io/github/easy4j/opencode/OpenCodeCliConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* and other CLI runtime settings. Can be mapped from Spring
1010
* {@code @ConfigurationProperties}.</p>
1111
*
12-
* @author [@Loong Wan](https://github.com/loong10k)
12+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1313
* @since 3.0.0
1414
* @see OpenCodeClient
1515
* @see OpenCodeClientConfig

src/main/java/io/github/easy4j/opencode/OpenCodeClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* CLI: {@code opencode --version}). If the probe fails but fail-fast is not enabled, only a
5252
* WARN log is emitted and construction continues.</p>
5353
*
54-
* @author [@Loong Wan](https://github.com/loong10k)
54+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
5555
* @since 3.0.0
5656
* @see OpenCodeHttpClientConfig
5757
* @see OpenCodeCliConfig

src/main/java/io/github/easy4j/opencode/OpenCodeClientConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* {@link OpenCodeCliConfig} (local CLI settings). Compatible with Spring
1010
* {@code @ConfigurationProperties} binding.</p>
1111
*
12-
* @author [@Loong Wan](https://github.com/loong10k)
12+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1313
* @since 3.0.0
1414
* @see OpenCodeHttpClientConfig
1515
* @see OpenCodeCliConfig

src/main/java/io/github/easy4j/opencode/OpenCodeHttpClientConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* <p>Covers server base URL, Basic Auth, TLS, HTTP timeouts, connection pool sizing,
99
* streaming thread pool, and default model/agent settings.</p>
1010
*
11-
* @author [@Loong Wan](https://github.com/loong10k)
11+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1212
* @since 3.0.0
1313
* @see OpenCodeHttpClient
1414
* @see OpenCodeOkHttpClientFactory

src/main/java/io/github/easy4j/opencode/OpenCodeOkHttpClientFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* <p>When a Spring container already provides an external {@link OkHttpClient}, the injection
1414
* constructors should be used instead and this factory will not participate.</p>
1515
*
16-
* @author [@Loong Wan](https://github.com/loong10k)
16+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1717
* @since 3.0.0
1818
* @see OpenCodeHttpClientConfig
1919
*/

src/main/java/io/github/easy4j/opencode/api/OpenCodeHttpClient.java

Lines changed: 186 additions & 87 deletions
Large diffs are not rendered by default.

src/main/java/io/github/easy4j/opencode/api/OpenCodeRequestContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* <p>OpenCode 使用工作目录隔离项目配置、智能体和会话。调用方应传入经过授权和规范化的
1010
* 绝对目录,SDK 会将其写入 {@code X-OpenCode-Directory} 请求头。</p>
1111
*
12-
* @author [@Loong Wan](https://github.com/loong10k)
12+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1313
* @since 2.7.x
1414
*/
1515
@Value

src/main/java/io/github/easy4j/opencode/api/OpenCodeSessionKeys.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* <li><b>按渠道隔离</b>:{@code opencode:{agentId}:{peerId}:{channel}}</li>
1818
* </ul>
1919
*
20-
* @author [@Loong Wan](https://github.com/loong10k)
20+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2121
* @since 2.7.x
2222
*/
2323
public final class OpenCodeSessionKeys {

src/main/java/io/github/easy4j/opencode/api/OpenCodeSseClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* instances. Provides both callback-based and blocking-queue-based subscription models,
3232
* as well as session-scoped and type-filtered subscriptions.</p>
3333
*
34-
* @author [@Loong Wan](https://github.com/loong10k)
34+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3535
* @since 3.0.0
3636
* @see OpenCodeHttpClientConfig
3737
* @see io.github.easy4j.opencode.api.event.EventHandler

0 commit comments

Comments
 (0)