Skip to content

Commit 2b37c1e

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 bbfbf42 commit 2b37c1e

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/main/java/io/github/easy4j/codex/CodexClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* decodes the standard output into a {@code List<CodexEvent>} using a private
5353
* Jackson {@link ObjectMapper} that ignores unknown properties.</p>
5454
*
55-
* @author [@Loong Wan](https://github.com/loong10k)
55+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
5656
* @since 3.0.0
5757
* @see CodexClientConfig
5858
* @see CodexCli

src/main/java/io/github/easy4j/codex/CodexClientConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* while the bypass flags default to {@code false} so that operations always
3535
* require approvals unless explicitly opted-in.</p>
3636
*
37-
* @author [@Loong Wan](https://github.com/loong10k)
37+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3838
* @since 3.0.0
3939
* @see CodexClient
4040
*/

src/main/java/io/github/easy4j/codex/cli/CodexCli.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* exact CLI flag spelling, isolating that knowledge from the rest of the code
4646
* base.</p>
4747
*
48-
* @author [@Loong Wan](https://github.com/loong10k)
48+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4949
* @since 3.0.0
5050
* @see <a href="https://github.com/openai/codex">Codex CLI</a>
5151
* @see CodexCliExecutor
@@ -796,7 +796,7 @@ public CodexCliResult execServer(String... args) {
796796
* flags can be supplied through {@link #configOverrides(String...)} without
797797
* requiring changes to this class.</p>
798798
*
799-
* @author [@Loong Wan](https://github.com/loong10k)
799+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
800800
* @since 3.0.0
801801
*/
802802
public static class ExecOptions {
@@ -1030,7 +1030,7 @@ public String[] toArgs() {
10301030
* {@code "exec"} because the global flags apply to whichever sub-command
10311031
* follows them.</p>
10321032
*
1033-
* @author [@Loong Wan](https://github.com/loong10k)
1033+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
10341034
* @since 3.0.0
10351035
*/
10361036
public static class GlobalOptions {

src/main/java/io/github/easy4j/codex/cli/CodexCliExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* injected configuration) so it can be safely shared between threads and
4646
* pooled by higher-level components.</p>
4747
*
48-
* @author [@Loong Wan](https://github.com/loong10k)
48+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4949
* @since 3.0.0
5050
* @see CodexCliResult
5151
*/

src/main/java/io/github/easy4j/codex/cli/CodexCliResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* encapsulate the common predicate checks so that callers do not have to
3535
* inspect the raw exit code or stderr payload themselves.</p>
3636
*
37-
* @author [@Loong Wan](https://github.com/loong10k)
37+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3838
* @since 3.0.0
3939
* @see CodexCliExecutor
4040
* @see CodexCli

src/main/java/io/github/easy4j/codex/model/CodexDoctorReport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* the raw JSON shape. Unknown properties are tolerated so the SDK remains
3131
* compatible with future CLI versions.</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 CodexEvent
3636
*/

src/main/java/io/github/easy4j/codex/model/CodexEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* who need strongly-typed access should re-deserialise those fields with
3434
* Jackson once the concrete schema is known.</p>
3535
*
36-
* @author [@Loong Wan](https://github.com/loong10k)
36+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
3737
* @since 3.0.0
3838
* @see CodexDoctorReport
3939
* @see CodexSession

src/main/java/io/github/easy4j/codex/model/CodexSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* <p>Unknown fields are intentionally tolerated so the SDK stays forward
3131
* compatible with future CLI revisions.</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 CodexEvent
3636
*/

0 commit comments

Comments
 (0)