Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Commit

Permalink
fix: Generic
Browse files Browse the repository at this point in the history
  • Loading branch information
itning committed Jun 4, 2020
1 parent a4d4563 commit d2d81fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public void afterTextChanged(Editable s) {
* @param leave 评论所在请假信息
*/
@SuppressWarnings("deprecation")
private void handleNewReasonBtn(@Nullable RecyclerView.Adapter adapter, TextInputLayout textInputLayout, EditText editText, Leave leave) {
private void handleNewReasonBtn(@Nullable RecyclerView.Adapter<?> adapter, TextInputLayout textInputLayout, EditText editText, Leave leave) {
if (editText.getText().length() == 0 || "".contentEquals(editText.getText())) {
textInputLayout.setError("请输入评论");
return;
Expand Down

0 comments on commit d2d81fd

Please sign in to comment.