Skip to content

Commit

Permalink
fix "Non-'static' initializer" warning
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Sep 15, 2024
1 parent 65cd001 commit a86167f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
public class ContentFunctionFactory {
private final List<ContentFunction> _functions = new ArrayList<>();

{
public ContentFunctionFactory() {
_functions.add(new PageCounterFunction());
_functions.add(new PagesCounterFunction());
_functions.add(new TargetCounterFunction());
Expand Down

0 comments on commit a86167f

Please sign in to comment.