Skip to content

Commit

Permalink
Merge pull request #604 from abing22333/issue603
Browse files Browse the repository at this point in the history
fix: #603
  • Loading branch information
shalousun authored Sep 13, 2023
2 parents 18918a1 + 9157bd2 commit 7b3b9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/power/doc/utils/DocUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ public static List<ApiErrorCode> errorCodeDictToList(ApiConfig config, JavaProje
return new ArrayList<>(0);
} else {
ClassLoader classLoader = config.getClassLoader();
Set<ApiErrorCode> errorCodeList = new HashSet<>();
Set<ApiErrorCode> errorCodeList = new LinkedHashSet<>();
try {
for (ApiErrorCodeDictionary dictionary : errorCodeDictionaries) {
Class<?> clzz = dictionary.getEnumClass();
Expand Down

0 comments on commit 7b3b9a6

Please sign in to comment.