Skip to content

Commit 2dc893c

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 52c8632 commit 2dc893c

39 files changed

Lines changed: 39 additions & 39 deletions

src/main/java/com/faceplusplus/spring/boot/FaceppApiAddress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* URL templates may contain {@code {0}}, {@code {1}}, etc. placeholders that are resolved
99
* via {@link #getUrl(Object...)}.
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 FaceppFaceOperations
1414
* @see FaceppFacesetOperations

src/main/java/com/faceplusplus/spring/boot/FaceppConstant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Constants used across the Face++ SDK for API endpoints, recording identifiers,
55
* and storage path configuration.
66
*
7-
* @author [@Loong Wan](https://github.com/loong10k)
7+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
88
* @since 3.0.0
99
* @see FaceppApiAddress
1010
*/

src/main/java/com/faceplusplus/spring/boot/FaceppFaceAsyncOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Async-capable operations for face detection, analysis, comparison, search, and skin analysis.
2020
* Extends {@link FaceppFaceOperations} inheriting all synchronous face operation methods.
2121
*
22-
* @author [@Loong Wan](https://github.com/loong10k)
22+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2323
* @since 3.0.0
2424
* @see FaceppFaceOperations
2525
* @see FaceppTemplate

src/main/java/com/faceplusplus/spring/boot/FaceppFaceOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Synchronous operations for the Face++ face recognition API group.
2828
* Provides methods for face detection, analysis, comparison, search, and skin analysis.
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 FaceppFaceAsyncOperations
3333
* @see FaceppApiAddress

src/main/java/com/faceplusplus/spring/boot/FaceppFacesetAsyncOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Async-capable operations for FaceSet management, including asynchronous
2929
* add/remove face operations and task status queries.
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 FaceppFacesetOperations
3434
* @see FaceppTemplate

src/main/java/com/faceplusplus/spring/boot/FaceppFacesetOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Synchronous operations for FaceSet management, including create, delete, update,
3131
* list, and face token add/remove operations, as well as face information management.
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 FaceppFacesetAsyncOperations
3636
* @see FaceppApiAddress

src/main/java/com/faceplusplus/spring/boot/FaceppOkHttp3Template.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Supports synchronous and asynchronous requests, JSON and multipart form data,
3838
* and automatic response deserialization.
3939
*
40-
* @author [@Loong Wan](https://github.com/loong10k)
40+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
4141
* @since 3.0.0
4242
* @see FaceppProperties
4343
* @see FaceppResponse

src/main/java/com/faceplusplus/spring/boot/FaceppOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Provides common access to {@link FaceppTemplate}, {@link FaceppProperties},
2424
* {@link FaceppOkHttp3Template}, and the shared {@link ObjectMapper}.
2525
*
26-
* @author [@Loong Wan](https://github.com/loong10k)
26+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
2727
* @since 3.0.0
2828
* @see FaceppTemplate
2929
* @see FaceppFaceOperations

src/main/java/com/faceplusplus/spring/boot/FaceppProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Configuration properties for the Face++ SDK.
88
* Properties are bound from the Spring Boot configuration prefix {@value #PREFIX}.
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 FaceppTemplate
1313
*/

src/main/java/com/faceplusplus/spring/boot/FaceppTemplate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Main entry point for the Face++ SDK.
77
* Provides access to face detection/analysis operations and FaceSet management operations.
88
*
9-
* @author [@Loong Wan](https://github.com/loong10k)
9+
* @author <a href="https://github.com/loong10k">Loong Wan</a>
1010
* @since 3.0.0
1111
* @see FaceppFaceAsyncOperations
1212
* @see FaceppFacesetAsyncOperations

0 commit comments

Comments
 (0)