Skip to content

Commit

Permalink
Replacing EnvironmentEvent with SystemEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jul 17, 2020
1 parent 7d714ca commit 305920f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
The LUWRAIN project
Please visit http:https://luwrain.org/doc/authors/ to get the complete list of our developers
The LUWRAIN Project, please visit http:https://luwrain.org/doc/authors/ to get a complete list of our developers
6 changes: 3 additions & 3 deletions src/main/java/org/luwrain/app/contacts/MainLayout.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ final class MainLayout extends LayoutBase implements ListArea.ClickHandler
return true;
return super.onInputEvent(event);
}
@Override public boolean onSystemEvent(EnvironmentEvent event)
@Override public boolean onSystemEvent(SystemEvent event)
{
NullCheck.notNull(event, "event");
if (app.onSystemEvent(this, event))
Expand All @@ -51,7 +51,7 @@ final class MainLayout extends LayoutBase implements ListArea.ClickHandler
return true;
return super.onInputEvent(event);
}
@Override public boolean onSystemEvent(EnvironmentEvent event)
@Override public boolean onSystemEvent(SystemEvent event)
{
NullCheck.notNull(event, "event");
if (app.onSystemEvent(this, event))
Expand All @@ -66,7 +66,7 @@ final class MainLayout extends LayoutBase implements ListArea.ClickHandler
return true;
return super.onInputEvent(event);
}
@Override public boolean onSystemEvent(EnvironmentEvent event)
@Override public boolean onSystemEvent(SystemEvent event)
{
NullCheck.notNull(event, "event");
if (app.onSystemEvent(this, event))
Expand Down

0 comments on commit 305920f

Please sign in to comment.