Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robot committed Nov 24, 2023
1 parent 96cb033 commit 90337ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easy-enum/src/main/java/com/robot/dict/Dict.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static <T> List<DictBean> getAll(Class<? extends Dict<T>> clazz) {
* @return List
*/
static <T> List<DictBean> getAll(Class<? extends Dict<T>> clazz, boolean isExcludeDeprecated) {
return DictPool.getAll(clazz, true);
return DictPool.getAll(clazz, isExcludeDeprecated);
}

/**
Expand Down

0 comments on commit 90337ce

Please sign in to comment.