Skip to content

Commit 1e7511a

Browse files
committed
fix(doc): java doc eror due to comment
1 parent 230f72e commit 1e7511a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/main/java/com/alibaba/dashscope/utils/ParamUtils.java

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
package com.alibaba.dashscope.utils;
22

33
public class ParamUtils {
4-
4+
5+
/**
6+
* Private constructor to prevent instantiation of utility class
7+
*/
8+
private ParamUtils() {
9+
// Utility class should not be instantiated
10+
}
11+
512
/**
6-
* Check if the model is qwen{n} where n >= 3
13+
* Check if the model is qwen{n} where n is greater than or equal to 3
714
*
815
* @param modelName the model name to check
9-
* @return true if model is qwen{n} where n >= 3, false otherwise
16+
* @return true if model is qwen{n} where n is greater than or equal to 3,
17+
* false otherwise
1018
*/
1119
public static boolean isQwenVersionThreeOrHigher(String modelName) {
1220
if (modelName == null) {

0 commit comments

Comments
 (0)