fix: 修改了函数名拼写

This commit is contained in:
YunaiV
2024-06-22 08:37:06 +08:00
parent 3da2449a15
commit 01b0866aa4
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public enum OAuth2GrantTypeEnum {
private final String grantType;
public static OAuth2GrantTypeEnum getByGranType(String grantType) {
public static OAuth2GrantTypeEnum getByGrantType(String grantType) {
return ArrayUtil.firstMatch(o -> o.getGrantType().equals(grantType), values());
}