Skip to content

Commit

Permalink
fix: 解决 method not found
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdahai112 committed Dec 10, 2021
1 parent 5f47ee3 commit f96f6a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ private Map<String, String> getParamMap(PsiMethod e1, AppSettingState state) {
if (token.getTokenType().toString().equalsIgnoreCase("DOC_TAG_NAME") && token.getText().equalsIgnoreCase("@param")) {
PsiDocToken paramEn = iterator.next();
PsiDocToken paramZh = iterator.next();
if (!org.apache.commons.lang3.StringUtils.isAllBlank(paramEn.getText(), paramZh.getText())) {
if (StringUtils.isNoneBlank(paramEn.getText(), paramZh.getText())) {
r.put(UTF8Util.toUTF8String(paramEn.getText()), UTF8Util.toUTF8String(paramZh.getText()));
}
}
Expand Down

0 comments on commit f96f6a3

Please sign in to comment.