Skip to content

Commit

Permalink
Compilation error fixes for news2
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Oct 22, 2021
1 parent 54fee0e commit 30f9c31
Show file tree
Hide file tree
Showing 6 changed files with 616 additions and 642 deletions.
52 changes: 0 additions & 52 deletions src/main/java/org/luwrain/app/news2/ActionLists.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -141,20 +141,6 @@ boolean setShowAllGroupsMode(ListArea groupsArea, boolean value)
return true;
}

boolean onGroupsClick(ListArea summaryArea, Object obj)
{
NullCheck.notNull(summaryArea, "summaryArea");
NullCheck.notNull(obj, "obj");
if (!(obj instanceof GroupWrapper))
return false;
final GroupWrapper group = (GroupWrapper)obj;
if (base.openGroup(group.group))
{
summaryArea.redraw();
summaryArea.resetHotPoint();
}
return true;
}

boolean markAsReadWholeGroup(ListArea groupsArea, ListArea summaryArea, GroupWrapper group)
{
Expand Down
Loading

0 comments on commit 30f9c31

Please sign in to comment.