Skip to content

Commit

Permalink
修正Filter类返回值类型的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
qingmei2 committed Jul 7, 2020
1 parent b050f18 commit 8e1a09b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ abstract class Filter {
*
* @return null if selectable, [IncapableCause] if not selectable.
*/
abstract fun filter(context: Context, item: Item): IncapableCause
abstract fun filter(context: Context, item: Item): IncapableCause?

/**
* Whether an [Item] need filtering.
Expand Down

0 comments on commit 8e1a09b

Please sign in to comment.