Skip to content

Commit

Permalink
Fix inheritance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 1, 2023
1 parent e0fb8f3 commit 6cf4e0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Dzmitry Mikhievich
*/
abstract class ReportableItemFootprint<T extends NodeInfo> {
public abstract class ReportableItemFootprint<T extends NodeInfo> {

static final Predicate<ReportableItemFootprint> IS_NOT_PUBLISHED = input -> input != null && !input.isPublished();

Expand Down

0 comments on commit 6cf4e0f

Please sign in to comment.